Question

I’ve installed an extension, and after installing it started giving me this error:

Fatal error: Class ‘Mage_Shoppersettings_Helper_Image’ not found in /home/default/public_html/app/Mage.php on line 547

Even after disabling the extension the error remains. I tried to see if the was something I changed in the Mage.php, but my file is still the same the the default file.

Does anyone know what can be causing the problem?

Was it helpful?

Solution

helper class is not define properly in config.xml of that modules

put the below code this

<global>
......
<helpers>
            <custommodule>
                <class>Amit_Custommodule_Helper</class>
            </custommodule>
        </helpers>
...
</global>

Your code should have

<global>
    ......
    <helpers>
                <shoppersettings>
                    <class>YourModulenamaSpace_Shoppersettings_Helper</class>
                </shoppersettings>
            </helpers>
    ...
    </global>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top