首页 > CMS > 织梦DEDE > 正文

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

2024-07-12 08:43:11
字体:
来源:转载
供稿:网友

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();//开源软件:Vevb.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了.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表