欢迎来到欣怡建站!我们致力于提供优质的网站建站服务
注册

DEDE织梦自定义模型图片内容提示Fatal error:Call to a member function GetInnerText() on a

相关案例演示

DEDE织梦自定义模型图片内容提示Fatal error:Call to a member function GetInnerText() on a non-object 解决方法


DEDE的自定义模型,如果用来发布图片,可能会出现以下问题

在更新列表页或者点编辑文章时会提示:
Fatal error: Call to a member function GetInnerText() on a non-object in E:wwwinclude aglibchannelimg.lib.php on line 51

或者提示includecustomfields.func.php on line 539

这个错误修复方法很简单。
编辑打开 include aglibchannelimg.lib.php
查找51行左右:
$innerTmp = $arcTag->GetInnerText();
将其替换为:
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());

if($arcTag==""){
    $innerTmp = trim($arcTag);
}
else{
    $innerTmp = trim($arcTag->GetInnerText());
}
编辑includecustomfields.func.php

将539行的

$fvalue = trim($ntag->GetInnerText());

替换成

if($ntag==""){

$fvalue = trim($ntag);

}

else{

$fvalue = trim($ntag->GetInnerText());

}

然后就能正常更新列表页了,问题上解决 。

作者:欣怡建站 挑错 时间:2020-01-07 21:58
首先声明,只要是我们的vip会员所有源码均可以免费下载,不做任何限制
☉本站的源码不会像其它下载站一样植入大量的广告。为了更好的用户体验以后坚持不打水印
☉本站只提供精品源码,源码在于可用,不在多!!希望在这里找到你合适的。
☉本站提供的整站程序,均带数据及演示地址。可以在任一源码详情页查看演示地址
☉本站所有资源(包括源码、模板、素材、特效等)仅供学习与参考,请勿用于商业用途。
☉如有其他问题,请加网站客服QQ(984818011)进行交流。
相关教程
在线客服