Magento – after installing magento cannot login admin

magento

After installing Magento admin panel cannot log in. I have installed magento on my localhost. After all the setup when I used the admin page to login I can't able to login in chrome browser even with my right username and password

Best Answer

I found this solution : Go to app/code/core/Mage/Core/Model/Session/Abstract/Varien.php file within your magento directory and comment out these 3 lines of code : Also the comma must be removed from the file .Save it and try to login to your magento admin panel.

// 'domain'   => $cookie->getConfigDomain(),
// 'secure'   => $cookie->isSecure(),
// 'httponly' => $cookie->getHttponly()
Related Topic