最近公司要搞一个电子商务网站,我于是找到了magento,但我安装以后登录就出现了问题,每次登陆都跳回登陆页面,登陆不进后台管理系统。输入错的用户名和密码会出现错误提示。
很明显示我输入正确是正确的,那么就是只能是他的程序问题了。
后来在magento 找到了解决办法 解决办法是 打开magento的文件夹找到app/co
然后找到代码
// set session cookie params
session_set_cookie_params(
$this->getCookie()->getLifetime(),
$this->getCookie()->getPath() //remove this after putting on server (leave the comma) ,
$this->getCookie()->getDomain(),
$this->getCookie()->isSecure(),
$this->getCookie()->getHttponly()
);
然后修改成
// set session cookie params
session_set_cookie_params(
$this->getCookie()->getLifetime(),
$this->getCookie()->getPath() //remove this after putting on server (leave the comma) ,
//$this->getCookie()->getDomain(),
//$this->getCookie()->isSecure(),
//$this->getCookie()->getHttponly()
);