0
I deleted a module in Magento and the following error appeared:
[14-Oct-2014 11:42:32 UTC] PHP Fatal error: Class 'Mage_chronorelais_helper_data' not found in /public_html/app/Mage.php on line 548
The function is as follows:
public static function helper($name)
{
$registryKey = '_helper/' . $name;
if (!self::registry($registryKey)) {
$helperClass = self::getConfig()->getHelperClassName($name);
self::register($registryKey, new $helperClass);
}
return self::registry($registryKey);
}
Line 548 is as follows::
self::register($registryKey, new $helperClass);
In the backup I did before deleting the module, I looked for "Mage_chronorelais_helper_data" and I can’t find anything, I look in the database something related and I can’t find anything.
How to resolve the error?
he is trying to instantiate a helper that no longer exists for some reason
– Otto
@Otto right, but how to remove this instance? I searched everywhere for the class and I can’t find it, not even in the database. There has to be something somewhere that leads the system to try to create the instance, which I don’t understand.
– Filipe Moraes