帖子标题不能为空是什么意思(织梦后台发文章显示标题不能为空,或发表、修改后文章标题为空)

最近下班后做个织梦。如果像标题显示织梦后台发文章显示标题不能为空,或发表、修改后文章标题为空的那样,肯定是你服务器升级了,把编码改为"gb2312"就好了。

主要是这三个文件:

1.找到网站目录include/ckeditor/ckeditor_php5.php,打开文件后找到htmlspecialchars($value) . "n";,把它替换为htmlspecialchars($value, ENT_COMPAT ,"GB2312") . "n";

2.找到dede/article_add.php文件,打开直接ctrl+f 搜索

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen));然后替换为

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen),ENT_COMPAT ,"GB2312");

3.打开dede/article_edit.php文件,还是Ctrl+f :

帖子标题

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen));替换为

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen),ENT_COMPAT ,"GB2312");

您可以还会对下面的文章感兴趣

使用微信扫描二维码后

点击右上角发送给好友