Can't log in to Magento Admin

后端 未结 23 2133
花落未央
花落未央 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:31

    In new Magento Installation, do the following ->

    Open the file

    app/code/core/Mage/Core/Model/Session/Abstract/Varien.php.

    and change the code at line 87 to this ->

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

提交回复
热议问题