DedeCMS后台设置无法保存中文字符

1、后台-系统基本参数无法保存中文

dede/templets/sys_info.htm 中搜索:htmlspecialchars($row[‘value’])
替换为:htmlspecialchars($row[‘value’],ENT_COMPAT ,’GB2312′)

若其他页面也无法保存中文,则需要整站搜索并批量替换。

2、编辑器中中无法保存中文

include/ckeditor/ckeditor_php5.php 中搜索:

$out = "\n";

替换为:

$out = "\n";

3、标签中无法保存中文

dede/article_add.phpdede/article_edit.php 中搜索:

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen));

替换为:

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

4、核心-批量维护-tag标签管理中无法保存中文

/dede/templets/tags_main.htm 中搜索:$fields['tag'] = htmlspecialchars($fields['tag']);
替换为:$fields['tag'] = htmlspecialchars($fields['tag'],ENT_COMPAT ,'GB2312');

这样一修改,在gbk版下的织梦就不会出现编码的问题了。

你可能感兴趣的:(CMS)