|
I was upgrading the core modules through magento connect.
After upgrade, the store front and admin section were showing 403 Forbidden Access
and when I browsed http://store.com/downloader/
it was showing Mage_Core_Model_Store_Exception
So I followed this post http://www.magentocommerce.com/boards/viewthread/24567/
and changed
In magento/app/code/core/Mage/Core/Model/App.php edit line 558 from
$id = $this->_currentStore;
to
$id = $this->_currentStore ? $this->_currentStore : “default”;
I also made a copy of php.ini file and placed it in /downloader
Now 403 forbidden access is gone, but I get this when I access store or admin
[quote]Fatal error: Call to a member function load() on a non-object in /mnt/w0010/d33/s12/b02a7997/www/zzz.ca/store/app/code/core/Mage/Core/Model/Abstract.php on line 216[/quote]
Could some one please help me out as I have loaded the products and haven’t taken any back up so far
|