I just set up Magento on my site and I’m having trouble getting into the admin area. The front end of my store loads perfectly fine, but when I try to access the backend, something weird happens. I can enter my username and password on the login page without any problems, and it accepts my credentials. However, right after logging in successfully, I get redirected to a completely empty white page.
I’ve been searching around and found some posts mentioning this might be related to cookie settings. I tried editing the varien.php file and commented out several lines that people suggested, but none of those changes fixed my issue. The blank page still appears every time I log in.
Has anyone else run into this problem before? What could be causing this white screen issue in the Magento admin panel?
that white screen issue rings a bell… did u chk your error logs? magento often throws php errors without displaying them. also, what magento version are you using? did u modify any base urls during setup?
i had the same problem too. try checking your memory limits - increasing memory_limit in php.ini might help. magento can be pretty heavy, especially on the admin side.
This usually happens because of PHP fatal errors that aren’t showing up. Check your admin URL settings in the core_config_data table - look at web/secure/base_url and web/unsecure/base_url. I ran into this same thing when my admin URL didn’t match my actual domain. Jump into your database and make sure those URLs point to the right paths. Also, turn on error reporting temporarily by adding error_reporting(E_ALL) and ini_set(‘display_errors’, 1) to your admin folder’s index.php file. You’ll see what PHP errors are actually causing the blank page.