最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
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了。
相关文章
- 燕云十六声七级家业怎么过 七级家业达成攻略 09-09
- 燕云十六声一念平安任务怎么做-万事知一念平安任务攻略 09-09
- 地下城堡4星辰之海怎么完成 星辰之海任务攻略图文详解 09-09
- 无限暖暖家园模式怎么玩 家园模式玩法介绍 09-09
- 逆战未来增幅效果是什么 增幅效果介绍 09-09
- 逆战未来武器流派有哪些 武器流派推荐 09-09