1.用dedecms建立的站点一段时间后发现后台登陆不了,于是找到include目录下的userlogin.class.php文件找到语句:@session_register($this->keepUserIDTag);的六条语句给注释掉在重启IIS,后台正常打开。
2.其他网络上的解决方法:
php5.4没有session_register方法,所以在include/userlogin.class.php中加入以下代码:
functionsession_register(){
$args=func_get_args();
foreach($argsas$key){
$_SESSION[$key]=$GLOBALS[$key];
}
}
3.或者先打开织梦错误显示:找到include/common.inc.php文件
把
//error_reporting(E_ALL);
error_reporting(E_ALL||~E_NOTICE);
替换为:
error_reporting(E_ALL);
//error_reporting(E_ALL||~E_NOTICE);
会提示错误信息