I have installed one module extension which throws an fatal error
"Fatal error: Class 'Mage_Giftcards_Helper_Data' not found in ..../app/Mage.php on line 546" in admin.
I have reffered this link https://stackoverflow.com/a/9191286/2919940 and this link as well https://magento.stackexchange.com/a/7133/3693
But I have
<global>
<helpers>
<giftcards>
<class>Webtex_Giftcards_Helper</class>
</giftcards>
</helpers>
</global>
in my config.xml and I have this class
class Webtex_Giftcards_Helper_Data extends Mage_Core_Helper_Data{
// my methods
}
declared at /app/code/local/Webtex/Giftcards/Helper/Data.php path.
I have disabled compiler and cleared cache by making empty var/cache directory.
I found everwhere that config.xml should have helper class define and Data.php should have declare that helper class.
But I have both of them in my case, what can be reason for this error ? I have tested that module on my fresh magento installation as well,
Magento version is 1.7.0.2
Please provide help for this error ?? If there's conflicts of class names how can we debug that ??
Thanks