Magento Mage registry key “_singleton/core/resource” already exists

Mage registry key “_singleton/core/resource” already exists is a very common problem during magento update and due to this issues many time we are getting the erros in the page “There has been an error processing your request” . In my case i found the issue is due to cache so what i did i cleaned my cache every time through index.php  of magento .

$app = Mage::app();
if ($app != null)
{
    $cache = $app->getCache();
    if ($cache != null)
    {
        $cache->clean();
    }
}
Facebook Twitter Digg Reddit Stumbleupon

Related Posts:

  • No Related Posts

Posted on 14 August '11 by , under Magento.

One Comment to “Magento Mage registry key “_singleton/core/resource” already exists”

14.11.11 at 14:37
Posted by Center

Thanks this worked 100% after upgrading from 1.6.0 tot 1.6.1








*

Read previous post:
Magento : 404 Error Page not found

Magento : 404 Error  Page not found : This is very common problem when you are installing any module or widgets...

Close