dede后台编辑文章显示空白

1.找到:include/common.inc.php文件,

error_reporting(E_ALL || ~E_NOTICE);

   替换为:

   error_reporting(E_ALL);

这一步很重要,因为它会告诉你为什么变成空白的提示信息,保存之后再次进入管理后台,这个时候会发现后台会有一句话提示了;

我的提示是: Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /data/home/qxu2060470276/htdocs/include/dedehttpdown.class.php on line 320;

319 // $content = is_array($post) ? http_build_query($post) : $post;
320 s->m_httphead["http-state"]))

2.替换dedehttpdown.class.php;

修改提交报错提示:

Warning: mkdir() [function.mkdir]: No such file or directory in /data/home/qxu2060470276/htdocs/include/helpers/file.helper.php on line 125

Warning: chmod() has been disabled for security reasons in /data/home/qxu2060470276/htdocs/include/helpers/file.helper.php on line 126

已经修改了,直接关闭报错;

未完待续...

原文地址:https://www.cnblogs.com/ybtxwd/p/9367117.html