Reputation: 1
Fatal error: Class 'Junaidbhura_Ccavenue_Helper_Data' not found in /home/www/ngx/www/html/app/Mage.php on line 547
please help me.
Upvotes: 0
Views: 4345
Reputation: 2183
That's because your helper either doesn't exist at: app/code/local/Junaidbhura/Ccavenue/Helper/Data.php or you haven't defined it in your module /etc/config.xml file:
<global>
<helpers>
<ccavenue>
<class>Junaidbhura_Ccavenue_Helper</class>
</ccavenue>
</helpers>
</global>
Or your module is not activated in app/etc/modules/Junaidbhura_Ccavenue.xml
Upvotes: 1