当前位置: 首页 > 站长资讯 > 正文页面

dedecms5.7后台发布文章提示“标题不能为空”的解决方法

本文实例讲述了dedecms5.7后台发布文章提示“标题不能为空”的解决方法。分享给大家供大家参考。具体分析如下:pRl网站目录_网站网址收录与提交入口

有人发现在使用织梦dedecms5.7后台发布文章提示“标题不能为空”了,这个问题很怪我们都是从直接从官网下载的也有问题了,那么要如何解决呢.pRl网站目录_网站网址收录与提交入口

问题症状:V5.7登录后台后,发布英文标题没问题,发布中文会提示“标题不能为空”.pRl网站目录_网站网址收录与提交入口

问题根源:htmlspecialchars在php5.4默认为utf8编码,gbk编码字符串经 htmlspecialchars 转义后的中文字符串为空,也就是标题为空.pRl网站目录_网站网址收录与提交入口

解决办法:给htmlspecialchars添加ENT_COMPAT ,’GB2312’参数修改编码默认值.pRl网站目录_网站网址收录与提交入口

具体修改页面,pRl网站目录_网站网址收录与提交入口

1、dede/article_add.php 和 dede/article_edit.phppRl网站目录_网站网址收录与提交入口

pRl网站目录_网站网址收录与提交入口

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen));pRl网站目录_网站网址收录与提交入口

改成pRl网站目录_网站网址收录与提交入口

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen),ENT_COMPAT ,'GB2312′);pRl网站目录_网站网址收录与提交入口

2、include/ckeditor/ckeditor_php5.php 138行:将pRl网站目录_网站网址收录与提交入口

htmlspecialchars($value)pRl网站目录_网站网址收录与提交入口

替换为pRl网站目录_网站网址收录与提交入口

htmlspecialchars($value, ENT_COMPAT ,'GB2312′)pRl网站目录_网站网址收录与提交入口

测试,发布文章成功.pRl网站目录_网站网址收录与提交入口

提示:若不想修改程序源码的话,建议更换到PHP5.3版本,等织梦升级支持PHP5.4以后再更换空间服务器.pRl网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms建站有所帮助。pRl网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章