參考本站實例前,請先確保網(wǎng)站已經(jīng)配置生成手機靜態(tài)功能。
修改或者覆蓋文件之前請備份后臺這個文件 dede ask_do.php(dede表示你的后臺目錄)
1、后臺-系統(tǒng)配置,添加變量
變量名稱:cfg_makemobile
變量類型:布爾(Y/N)
參數(shù)說明:移動版生成靜態(tài)文件
變量值:Y
所在組:站點設(shè)置
2、dede ask_do.php 找到
if(is_array($nextRow))
{
$envs['aid'] = $nextRow['id'];
$arc = new Archives($nextRow['id']);
$arc->MakeHtml();
}
在它的下面加入
//發(fā)布文章后自動生成移動版文章頁、上一篇下一篇 開始
if($cfg_makemobile == 'Y')
{
define('DEDEMOB', 'Y');
$arc = new Archives($aid);
$arc->MakeHtml();
if(is_array($preRow))
{
$envs['aid'] = $preRow['id'];
$arc = new Archives($preRow['id']);
$arc->MakeHtml();
}
if(is_array($nextRow))
{
$envs['aid'] = $nextRow['id'];
$arc = new Archives(nextRow['id']);
$arc->MakeHtml();
}
}
//發(fā)布文章后自動生成移動版文章頁、上一篇下一篇 結(jié)束
繼續(xù)找到
$pv->SaveToHtml($homeFile);
在它的下面加入
//發(fā)布文章后自動生成移動版首頁 開始
if($cfg_makemobile == 'Y')
{
$templet = str_replace("{style}", $cfg_df_style, $row['templet']);
$templet = str_replace('.htm','_m.htm',$templet);
$homeFile = dirname(__FILE__).'/'.str_replace("../", '../m/',$row['position']);
$homeFile = str_replace("http://", "/", str_replace("\", "/", $homeFile));
$fp = fopen($homeFile, 'w') or die("無法更新移動版主頁到:$homeFile 位置");
fclose($fp);
$tpl = $cfg_basedir.$cfg_templets_dir.'/'.$templet;
if(!file_exists($tpl))
{
$tpl = $cfg_basedir.$cfg_templets_dir.'/default/index_m.htm';
if(!file_exists($tpl)) exit("無法找到移動版主頁模板:$tpl ");
}
$GLOBALS['_arclistEnv'] = 'index';
$pv->SetTemplet($tpl);
$pv->SaveToHtml($homeFile);
}
//發(fā)布文章后自動生成移動版首頁 結(jié)束
最后繼續(xù)找到
require_once(DEDEINC."/arc.listview.class.php");
$lv = new ListView($tid);
$lv->CountRecord();
$lv->MakeHtml();
$lv->Close();
在它的下面加入
//發(fā)布文章后自動生成移動版列表頁 開始
if($cfg_makemobile == 'Y')
{
define('DEDEMOB', 'Y');
$lv = new ListView($tid);
$lv->CountRecord();
$lv->MakeHtml();
$lv->Close();
}
//發(fā)布文章后自動生成移動版列表頁 結(jié)束
這樣全部完成
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: dedecms發(fā)布文章后自動生成移動版首頁、列表頁、文章頁及上下篇