Could anyone help me please i m unable to login into Magento admin area.
My magento ver is 1.9.2.4
also run below query
UPDATE admin_user SET password = CONCAT(MD5('password'), ':xx') WHERE username = 'admin';
also try to reset password nothing working.
Quick reply will be much appriciated.
Hello.
This example should help you.
If you are having trouble to get logged in with the correct username and password, here are some ideas. If you have used google chrome to install magento, use firefox to open magento and edit the app/code/core/Mage/Core/Model/Session/Abstract/Varien.php file within your magento directory and comment those below lines
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath()
// 'domain' => $cookie->getConfigDomain(),
// 'secure' => $cookie->isSecure(),
// 'httponly' => $cookie->getHttponly()
);
And use your credentials to log in. I hope this works for you!!!