本地安装magento1.9版本,安装好后在登陆后台的时候都遇到了点问题,magento后台登陆不了,用户名和密码都输入正确,就是magento登陆不了后台,经过研究发现,登陆不了magento后台主要是因为magento自身缓存设置的问题,解决方法如下: magento登陆不了后台可以尝试以下几种方法解决: 打开文件 app/code/core/Mage/Core/Model/Session/Abstract/Varien.php 找到代码: session_set_cookie_params( $this->getCookie()->getLifetime(), $this->getCookie()->getPath(), $this->getCookie()->getDomain(), $this->getCookie()->isSecure(), $this->getCookie()->getHttponly() ); 替换为: session_set_cookie_params( $this->getCookie()->getLifetime(), $this->getCookie()->getPath() , //$this->getCookie()->getDomain(), //$this->getCookie()->isSecure(), //$this->getCookie()->getHttponly() ); 这些是在网上找到的,有几个版本的magento这样做过之后问题就解决了,但是还有的这样设置过后仍登陆不了后台,于是继续找原因,终于在magento论坛里看到如下内容 magento1.9安装完后登录不了后台,但是密码和用户名都是正确的,解决方法: 打开 magento/app/code/core/Mage/Core/Model/Session/Abstract/varien.php 找到下面的代码,注释掉$cookieParams['domain'] = $cookie->getDomain();这行,就行了。 if (isset($cookieParams['domain'])) { $cookieParams['domain'] = $cookie->getDomain(); } 结果如下 if (isset($cookieParams['domain'])) { //$cookieParams['domain'] = $cookie->getDomain(); } 但是按照这个去做之后,还是出现错误,于是我把下面这段全部注释掉 //if (isset($cookieParams['domain'])) { //$cookieParams['domain'] = $cookie->getDomain(); // } 搞定,现在所有版本magento登陆不了后台的问题都解决了,其实就是本地测试magento 1.9后台登陆不了原因是权限问题,如果把localhost换成127.0.0.1就可以了。如果还登陆不了,欢迎发表回复,都可以讨论尝试下看哪种方法可以。 (责任编辑:最模板) |