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']}<br />";
- echo "模板文件不存在,无法解析文档!ddddd".$tempfile;
- exit();//开源软件:Vevb.com
- }
在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了.
新闻热点
疑难解答