欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

织梦Fatal error: Call to undefined function dede_htmlspecialchars

时间: 2020-09-15 15:33 阅读: 作者:素材无忧网

这个致命错误一般是因为织梦后台文件是最新的,而织梦的include文件夹里的程序核心文件还是旧版本引起函数不存在

下载官方对应编码的最新程序,提取这4个文件并覆盖到你网站对应的目录里

如果你的第1、第2个文件之前有改动过,记得备份再覆盖

  • include/common.inc.php
  • include/common.func.php
  • include/autoload.inc.php
  • include/autoload7.inc.php

只添加不存在函数的解决方法

打开 include/common.func.php 找到

function RunApp

 

在它的前面加入

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);
}

版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: 织梦Fatal error: Call to undefined function dede_htmlspecialchars

模板推荐