织梦gbk版在php5.4下系统基本参数设置不能保存中文以及在编辑器下中文不显示的问题

PHP中文网
Release: 2016-06-13 12:30:37
Original
864 people have browsed it

织梦系统我一直都是在用utf8版的,最近测试一套模板,可是上传到服务器发现系统基本设置下面不能保存中文,网上没找到很好的方法,自己看了一下,发现是网站编码的问题,我utf8的织梦在php5.4下就没问题,所以,要给表单中的字符转码。

后台-系统基本参数无法保存中文 修改方法:
dede\templets\sys_info.htm里面搜索
htmlspecialchars($row[‘value’])
替换成
htmlspecialchars($row[‘value’],ENT_COMPAT ,’GB2312′)

如果发现还有其他页面,也没办法保存中文,最好在dreamweaver下整站搜索htmlspecialchars($row[‘value’]),然后批量替换成htmlspecialchars($row[‘value’],ENT_COMPAT ,’GB2312′),这样就能保证系统的表单没问题。

但是这个修改的方法,对编辑器中的中文没办法,还要修改编辑器,方法为:

include/ckeditor/ckeditor_php5.php文件
找到代码
$out = “\n”;
改成:
$out = “\n”;

还有标签也不显示,修改方法为:

1、dede/article_add.php 和 dede/article_edit.php将

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

改成

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

这些都没问题后,发现 核心-批量维护-tag标签管理里面的中文标签全部都不显示了,真是麻烦,修改方法:



打开/dede/templets/tags_main.htm

找到:

$fields[‘tag’] = htmlspecialchars($fields[‘tag’]);

替换为

$fields[‘tag’] = htmlspecialchars($fields[‘tag’],ENT_COMPAT ,’GB2312′);

这样修改,tag标签就显示了。

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


涉及到不显示的地方有编辑器内容,系统基本参数,友情链接模块,请参考修改。


Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template