magento本地安装成功后无法进入后台,密码和用户名均正确 .
解决方法一:
这是一个cookie问题,使用firefox等非IE核心浏览器可以解决这个问题.虽然浏览器处理cookie的方式很相似但并不是100%相同. Magento1.4以上的版本也有这个问题.
详细的修正这个问题的方法是定位到: app/code/core/Mage/Core/Model/Session/Abstract/Varien.php 。大约在70行左右你可以看到类似的:
- // set session cookie params
- session_set_cookie_params(
- $this->getCookie()->getLifetime(),
- $this->getCookie()->getPath() // 注释掉后面或删除.
- //$this->getCookie()->getDomain(),
- //$this->getCookie()->isSecure(),
- //$this->getCookie()->getHttponly()
- );
解决方法二:
在C:Windows/System32/drivers/etc/hosts 内添加下面的语句:
127.0.0.1 www.localhost.com
在http.conf里修改
ServerName www.localhost.com:80
安装时访问:www.localhost.com/magento 。
安装过程中配置数据库时
BASE_URL保留系统自动生成的 www.localhost.com/magento