Magento – White screen after updating Magento

adminadmin-panelerrormagento-1.9PHP

I have upgraded my magento to 1.9.2 and had 404 on Home page and white screen (blank page) on /admin. Home page I have fixed, but i have no idea what is the trouble with admin page.

I have cleared cache, checked logs… Nothing special.
Who can help please?

Best Answer

First enable Developer mode in your .htaccess file, add the following at the end of the file:

SetEnv MAGE_IS_DEVELOPER_MODE "true"

Next edit index.php and uncomment the line:

#ini_set('display_errors', 1);

Line referenced:

Ensure var/ is writeable by the webserver.

Enabling developer mode and display of errors you should now see the exception/error when attempting to login to the admin page vs a blank screen.

Related Topic