Admin Login Problem Magento
When you try to Login with correct username and password but you still not login just redirected to same page.

This is Problem about your browser cookie management.
app\code\core\Mage\Core\Model\Session\Abstract\Varien.php
Go to This file Varien.php open it and edit this on 93-107 line make it comment
/* <-- comment
if (!$cookieParams['httponly']) {
unset($cookieParams['httponly']);
if (!$cookieParams['secure']) {
unset($cookieParams['secure']);
if (!$cookieParams['domain']) {
unset($cookieParams['domain']);
}
}
}
if (isset($cookieParams['domain'])) {
$cookieParams['domain'] = $cookie->getDomain();
}
*/ <-- comment close
0 comments:
Post a Comment