您好,登錄后才能下訂單哦!
dedecms中htm與html的區別在于建立文檔模板時,是否會解析
注意:如果不一致的話在dedecms后臺生成文檔模板時會出現“模板不存在,無法解析”,這時我們可以修改include/arc.archives.class.php中564行代碼根據實際情況,如果你的模板是html,而無法解析就需要‘#.htm$#’改為‘#.html$#’。
可以在dedecms源碼arc.archives.class.php文件564行,獲得模板的位置
/**
* 獲得模板文件位置
*
* @access public
* @return string
*/
function GetTempletFile()
{
global $cfg_basedir,$cfg_templets_dir,$cfg_df_style;
$cid = $this->ChannelUnit->ChannelInfos['nid'];
if(!empty($this->Fields['templet']))
{
$filetag = MfTemplet($this->Fields['templet']);
if( !preg_match("#\/#", $filetag) ) $filetag = $GLOBALS['cfg_df_style'].'/'.$filetag;
}
else
{
$filetag = MfTemplet($this->TypeLink->TypeInfos["temparticle"]);
}
$tid = $this->Fields['typeid'];
$filetag = str_replace('{cid}', $cid,$filetag);
$filetag = str_replace('{tid}', $tid,$filetag);
$tmpfile = $cfg_basedir.$cfg_templets_dir.'/'.$filetag;
if($cid=='spec')
{
if( !empty($this->Fields['templet']) )
{
$tmpfile = $cfg_basedir.$cfg_templets_dir.'/'.$filetag;
}
else
{
$tmpfile = $cfg_basedir.$cfg_templets_dir."/{$cfg_df_style}/article_spec.htm";
}
}
if ( defined('DEDEMOB') )
{
$tmpfile =str_replace('.htm','_m.htm',$tmpfile);
}
if(!file_exists($tmpfile))
{
$tmpfile = $cfg_basedir.$cfg_templets_dir."/{$cfg_df_style}/".($cid=='spec' ? 'article_spec.htm' : 'article_default.htm');
if ( defined('DEDEMOB') )
{
$tmpfile =str_replace('.htm','_m.htm',$tmpfile);
}
}
if (!preg_match("#.htm$#", $tmpfile)) return FALSE;
return $tmpfile;
}
注意:紅字體的地方
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。