I had the same issue. Solved it by deleting my cookies.
Hello,
I am having trouble with my store dashboard. After logging in i am never directed to my store dashboard. The login appears to succeed as the browser returns a url in the format: /index/index/key/31b733a88cf75936b33eed9673aa9d7e/ but all that happens is the page returns to the login screen with the username and password blanked out.
Kind Regards,
Richard
Solved! Go to Solution.
It's because of the php version as some functions were deprecated in PHP 5.6
you can either change PHP version or add some patches.
Here are some helpful fixes for this issue :
Hi @rhoggard
I had the same issue. Solved it by deleting my cookies.
Hi,
Unfortuneatly that didn't work
That generally happens because of caching, try in incognito
if it works then delete stored cache of browser.
Hi @rhoggard ,
Can you please check below link.
https://magento.stackexchange.com/questions/26071/magento-1-9-can-t-login-to-admin-panel
Thanks!
Problem Solved!Click Kudos & Accept as Solution.
I had the same issue couple of years ago. The reason was server disk space was filled, there was no available space. Making out some space resolved my problem. Check if you have the same issue.
If server is on linux, check the available space for mounted 'var' partition.
Thanks,
By the way this is my first answer on forum.
Thank for the suggestions!
Nothing has worked so far. Starting to run out of ideas. Cleared browser cache, var/cache & var/session. Cookies seem to be getting set ok too. Will try and turn on php error reporting next.
Check these steps to debug, you'll surely get some hint :
I've noticed my server is running php version 5.6.4. I have read that magento 1x needs to be patched to run this version. Could this be the issue?
Hello @rhoggard ,
first, check your system logs for any errors.
Switch to developer mode, as you cant login from admin
go to index.php and add following code
ini_set('display_errors', 1);
error_reporting(E_ALL);
$_SERVER['MAGE_IS_DEVELOPER_MODE'] = true;
Then run the admin blank page.
Now check for the errors .
Thanks
Problem solved? give 'Kudos' and accept 'Answer as Solution'.