Fixing ‘Class Magestore_Magenotification_Helper_Data Not Found’ Error

adminmagento-1.9

Today i uploaded my Magento Project to my Domain everything works fine but when i try to open configration from admin its show this error

Fatal error: Class 'Magestore_Magenotification_Helper_Data' not found
in /home/ashoocom/public_html/Magento/ashoo/app/Mage.php on line 547

after editing Magestore_Magenotification.xml in /app/etc/modules i.e changed from true to false

<?xml version="1.0"?>
<config>
    <modules>
        <Magestore_Magenotification>
            <active>false</active>
            <codePool>local</codePool>
        </Magestore_Magenotification>
    </modules>
</config> 

then i am able to open configration from admin panel

now first off all i don't know that why its being used is it fine to leave it false??
if not then what should i do?
in addition i don't have config.xml file in my theme as i searched this problem on google and many people suggested to make changes in config.xml and local.xml

please help
enter image description here

Best Answer

Looking at the error code posted above does the following file exist on your server app/code/community/Magestore/Magenotification/Helper/Data.php or app/code/local/Magestore/Magenotification/Helper/Data.php? If it doesn't it means your missing the helper file that came with the extension.

If you leave the module turned off it means the module will not work.

Related Topic