名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。织梦程序程序当你添加了自定义图片字段时,网站的前台打开当前栏目站点列表就会出现
Fatal error: Call to a member function GetInnerText() on string in /include/taglib/channel/img.lib.php on line 51 |
网站的后台出现
Fatal error: Call to a member function GetInnerText() on a non-object in /include/customfields.func.php on line 539 |
解决相关具体操作方法
打开 /include/customfields.func.php 搜索
$fvalue = trim($ntag->GetInnerText()); |
改成
$fvalue = ($ntag=="") ? trim($ntag) : trim($ntag->GetInnerText()); |
继续打开 /include/taglib/channel/img.lib.php 搜索
$innerTmp = $arcTag->GetInnerText(); |
改成
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText()); |
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。浏览器打开域名让它不自动添加显示index.html教程相关具体操作方法