DedeCMS 后台空白问题

找到文件include/common.inc.php
在 define(‘DEBUG_LEVEL’, FALSE); 之后插入如下代码即可解决

 1 if(!function_exists('session_register')){
 2     function session_register(){
 3         return true;
 4     }
 5 }
 6 if(!function_exists('session_unregister')){
 7     function session_unregister(){
 8         return true;
 9     }
10 }

问题原因,这两个函数在 php5.3 以后就被启用
This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.

原文地址:https://www.cnblogs.com/uniqid/p/4150870.html