一聚教程网:一个值得你收藏的教程网站

热门教程

dedecms 模板文件不存在,无法解析文档!

时间:2022-06-25 16:43:53 编辑:袖梨 来源:一聚教程网

dedecms 模板文件不存在,无法解析文档!
今天在用dede v5.6是出现问题,在生成软件详情页面时出现了模板文件不存在,无法解析文档的问题,但我的模板文件确实是存在的,下面我们来看我的解决方法。
找到 include/arc.archives.class.php教程文件,开打,找到520行,代码如下

$tempfile = $this->gettempletfile();
   if(!file_exists($tempfile) || !is_file($tempfile))
   {
    echo "文档id:{$this->fields['id']} - {$this->typelink->typeinfos['typename']} - {$this->fields['title']}
";
    echo "模板文件不存在,无法解析文档!ddddd".$tempfile;
    exit();
   }


在echo "模板文件不存在,无法解析文档!ddddd".$tempfile;加上    $tempfile,再生成,只输也了ddddd后面的模板变量无内容,我们就要找其它原因了。
$this->gettempletfile();这个函数,在435行,我们找到这个函数的
// 仅允许dedecms允许的模板文件格式
if (!preg_match("#.htm$#", $tmpfile) ) return false;     

dede这家伙只能是htm的模板文件哦,所以我把它改

if (!preg_match("#.htm$#", $tmpfile) && !preg_match("#.html$#", $tmpfile)  ) return false;   

这样再测试就ko了。

热门栏目