magento管理面板不使用chrome登录,但在firefox中正常工作

Sha*_*uch 1 google-chrome magento

我只是一个新的magento.我在我的localhost上安装了magento.安装后我试图以管理员身份登录我无法使用谷歌浏览器浏览器登录,但在Firefox中工作正常.任何人都可以帮我解决这个问题?提前致谢

Pra*_*nku 8

转到magento目录中的app/code/core/Mage/Core/Model/Session/Abstract/Varien.php文件,并在第88行附近找到下面的代码并注释下面的行

更改

$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);
Run Code Online (Sandbox Code Playgroud)

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

现在尝试使用您的凭据登录以登录.希望这对您有用!!!