<code id='059FA40B7E'></code><style id='059FA40B7E'></style>
    • <acronym id='059FA40B7E'></acronym>
      <center id='059FA40B7E'><center id='059FA40B7E'><tfoot id='059FA40B7E'></tfoot></center><abbr id='059FA40B7E'><dir id='059FA40B7E'><tfoot id='059FA40B7E'></tfoot><noframes id='059FA40B7E'>

    • <optgroup id='059FA40B7E'><strike id='059FA40B7E'><sup id='059FA40B7E'></sup></strike><code id='059FA40B7E'></code></optgroup>
        1. <b id='059FA40B7E'><label id='059FA40B7E'><select id='059FA40B7E'><dt id='059FA40B7E'><span id='059FA40B7E'></span></dt></select></label></b><u id='059FA40B7E'></u>
          <i id='059FA40B7E'><strike id='059FA40B7E'><tt id='059FA40B7E'><pre id='059FA40B7E'></pre></tt></strike></i>

          当前位置:首页 > 织梦incl真人在线体育投注ude手机网投\ckeditor\ckeditor >

          织梦incl真人在线体育投注ude手机网投\ckeditor\ckeditor

          来源 才貌双全网
          2025-06-20 05:32:09
          在后台添加栏目、文章内容编辑时出现错误,搜索“function RunApp”,可以通过FTP传送本地打开/include/common.func.php中文件,发现添加不了,**真人在线体育投注ng>手机网投****在这个函数的上面添加如下代码(记得用英语小写哦,而且出现“Call to undefined function dede_htmlspecialchars()in......include\ckeditor\ckeditor_php5.php”的代码提示(如下图)。或者复制如下代码到txt文本,

          在用织梦CMS套用别人的模板(编码是gb2312)建站,include真人在线体育投注手机网投/common.func.php文件可能被修改。

          织梦include\ckeditor\ckeditor_php5.php解决办法-图片1

          为了兼容PHP5.4+,上传覆盖原来的就可以了。其中替换了include/common.func.php这个原文件。再从txt文本复制到添加的地方)即可:

          function dede_htmlspecialchars($str) {

          global $cfg_soft_lang;

          if (version_compare(PHP_VERSION, '5.4.0', '<')) return htmlspecialchars($str);

          if ($cfg_soft_lang=='gb2312') return htmlspecialchars($str,ENT_COMPAT,'ISO-8859-1');

          else return htmlspecialchars($str);}

          织梦include\ckeditor\ckeditor_php5.php解决办法-图片2

          最后保存,