织梦后台打开后一片空白 35
无法正常登录,将下面代码粘贴到/include/helpers/util.helper.php中:
// Fix for removed Session functions
function fix_session_register(){
function session_register(){
$args = func_get_args();
foreach ($args as $key){
$_SESSION[$key]=$GLOBALS[$key];
}
}
function session_is_registered($key){
return isset($_SESSION[$key]);
}
function session_unregister($key){
unset($_SESSION[$key]);
}
}
if (!function_exists('session_register')) fix_session_register();
至此,就可以让DedeCMS在PHP5.4环境中运行了。
2024-07-20 广告
文件里的信息没有错的
include/common.inc.php这个文件,用DW编辑
把
//error_reporting(E_ALL);
error_reporting(E_ALL || ~E_NOTICE);
改为
error_reporting(E_ALL);
//error_reporting(E_ALL || ~E_NOTICE);
这时你打开后台就会显示错误的路径:
例如:Warning:require_once(D:/wwwroot/zgdxbw/wwwroot/data/config.cache.inc.php)[function.require-once]: failed to open stream: No such file or directory inD:\wwwroot\zgdxbw\wwwroot\include\common.inc.php on line 110
这个意思是说include\common.inc.php的 110行里找不到config.cache.inc.php的文件;
是因为更新文件的时候,系统会修改上图的这个data路径为默认,你改为你现在的路径就行,如../data表示上一层的意思,改后,把
//error_reporting(E_ALL);
// error_reporting(E_ALL || ~E_NOTICE);
让系统不提示错误,这时你的后台就可以打开了。
来源:http://blog.csdn.net/baidianfeng008/article/details/8196500