Can't log in to Magento Admin

后端 未结 23 2217
花落未央
花落未央 2020-12-01 02:49

I\'m having troubles logging into Magento\'s admin panel on one of our staging sites (it works 100% on our webdev servers and was working just fine not too long ago on the s

23条回答
  •  清歌不尽
    2020-12-01 03:45

    go to Varien.php app\code\core\Mage\Core\Model\Session\Abstract\Varien.php cleanup the files of var folder and make the mentioned changes:

            //session cookie params
            $cookieParams = array(
                'lifetime' => $cookie->getLifetime(),
                'path'     => $cookie->getPath()
                // 'domain'   => $cookie->getConfigDomain(),
                // 'secure'   => $cookie->isSecure(),
                // 'httponly' => $cookie->getHttponly()
            );
    

提交回复
热议问题