织梦(dedecms)后台登录空白怎么解决

2017-04-13 21:00:28 dedecms

织梦

cms登录后台显示登录成功,然后就是一片空白如何解决这个问题呢?

 修改include/common.inc.php

error_reporting(E_ALL);

//error_reporting(E_ALL || ~E_NOTICE);

修改为:

//error_reporting(E_ALL);

error_reporting(E_ALL || ~E_NOTICE);

保存之后然后试试看看,php不同版本之间会存在兼容性这也是mysql.