在專案目錄 dede / templets / sys_info.htm 中搜尋:
htmlspecialchars($row[『value』])
替換為:
htmlspecialchars($row[『value』],ent_compat ,』gb2312′)
若其他頁面也無法儲存中文,則需要整站搜尋並批量替換。
在專案目錄 include / ckeditor / ckeditor_php5.php 中搜尋:
$out = "\n";
替換為:
$out = "\n";
在專案目錄 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');
在專案目錄 dede/templets/tags_main.htm 中搜尋:
$fields['tag'] = htmlspecialchars($fields['tag']);
替換為:
$fields['tag'] = htmlspecialchars($fields['tag'],ent_compat ,'gb2312');
搞定 ~,這樣在gbk版下的織夢就不會出現編碼的問題了。
php後台無法儲存emoji表情
搜尋了一下相關問題,發現是資料庫是無法儲存emoji表情等特殊字元,只有進行編碼解碼。弄了個工具類。created by phpstorm.user 老輝輝 date 2017 12 18 time 14 30 class htmlutil i function str text 將emoji的un...
DedeCms後台登入空白
天在dede後台登陸時出現了問題,導致後台變成空白,再回頭登陸時,登陸頁面也是一片空白,檢視源 也是一片空白,在網上找了些資料,參考肖老師總結資料解決了dede後台登入變成一片空白的問題 找到 include common.inc.php檔案,開啟,查詢程式 error reporting e al...
Dedecms後台檔案詳解
目錄介紹 dede dede後台 html 生成欄目對應的檔案 include 類庫,配置檔案,詞庫 member 會員功能 setup 安裝程式目錄 special 專題生成目錄 templets 模板目錄 upimg 採集,後者使用者上傳的附件所在的目錄 base.css 基本樣式表 index...