Magento 1.5: Cannot login to admin panel after fresh install

· kalpesh

After installing magento 1.5, I tried to login to the admin panel with correct username and password, but it does not let me in without any error message. This is due to cookie problem in magento and can be fixed as below:

Open this file in your favorite editor: app/code/core/Mage/Core/Model/Session/Abstract/Varien.php

Comment lines that says like (probably line number 81 to 83)

  
$this->getCookie()->getDomain(),  
$this->getCookie()->isSecure(),  
$this->getCookie()->getHttponly()  

to
  
//$this->getCookie()->getDomain(),  
//$this->getCookie()->isSecure(),  
//$this->getCookie()->getHttponly()  

Now you could login to your admin panel without any problem.

#error #magento