当前位置:首页 > CMS教程 > DeDecms > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2015-03-28 16:59:32 浏览: 评论:0 

dedecms 模板文件不存在,无法解析文档,今天在用dede v5.6是出现问题,在生成软件详情页面时出现了模板文件不存在,无法解析文档的问题,但我的模板文件确实是存在的,下面我们来看我的解决方法.

找到 include/arc.archives.class.php文件,打开,找到520行,代码如下:

  1. $tempfile = $this->gettempletfile(); 
  2.    if(!file_exists($tempfile) || !is_file($tempfile)) 
  3.    { 
  4.     echo "文档id:{$this->fields['id']} - {$this->typelink->typeinfos['typename']} - {$this->fields['title']}<br />"
  5.     echo "模板文件不存在,无法解析文档!ddddd".$tempfile
  6.     exit();//开源软件:phpfensi.com 
  7.    } 

在echo "模板文件不存在,无法解析文档!ddddd".$tempfile;加上 $tempfile,再生成,只输也了ddddd后面的模板变量无内容,我们就要找其它原因了.

  1. $this->gettempletfile();这个函数,在435行,我们找到这个函数的 
  2. // 仅允许dedecms允许的模板文件格式 
  3. if (!preg_match("#.htm$#"$tmpfile) ) return false;      
  4. //dede这家伙只能是htm的模板文件哦,所以我把它改 
  5. if (!preg_match("#.htm$#"$tmpfile) && !preg_match("#.html$#"$tmpfile)  ) return false;   

这样再测试就ko了.

Tags: dedecms模板文件不存在

分享到: