織夢DedeCMS首頁定時自動生成HTML
最近新建一個站,用的全站偽靜態(tài),不知道是不是首頁調(diào)用數(shù)據(jù)太多,還是咋地,就是動態(tài)訪問首頁特卡,得十幾秒才能打開。但首頁生成html文件后,訪問正常。每天登錄后臺手動生成html是不現(xiàn)實(shí)的,所以就想把它設(shè)置為定時自動生成html,經(jīng)測試后,此方法了正好解決了我的問題。
第一步
寫一個觸發(fā)定時自動更新的php文件,新建一個php文件,內(nèi)容如下,標(biāo)題為autoindex.php,把它放到plus文件夾中。
<?php
function sp_input( $text )
{
$text = trim( $text );
$text = htmlspecialchars( $text );
if (!get_magic_quotes_gpc())
return addslashes( $text );
else
return $text;
}
$autotime = 120;//自動更新時間,單位為秒
$fpath = "../data/last_time.inc";//記錄更新時間文件,如果不能達(dá)到目的,請檢查是否有讀取權(quán)限。
include( $fpath );
if( empty($last_time))
$last_time = 0;
if( sp_input($_GET['renew'])=="now")
$last_time = 0;
if((time()-$last_time)>=$autotime )
{
define('DEDEADMIN', ereg_replace("[/\\]{1,}",'/',dirname(__FILE__) ) );
require_once(DEDEADMIN."/../include/common.inc.php");
require_once(DEDEINC."/arc.partview.class.php");
/*
$row = $dsql->GetOne("Select * From dede_homepageset");
$dsql->Close();
$templet=$row['templet'];
$position=$row['position'];
*/
$templet = “default/index.htm”;//這里是首頁模板位置,當(dāng)前是dede默認(rèn)首頁位置。
$position = "../index.html";
$homeFile = dirname(__FILE__)."/".$position;
$homeFile = str_replace("\\", "/", $homeFile );
$homeFile = str_replace( "http://", "/", $homeFile );
$pv = new PartView();
$pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );
$pv -> SaveToHtml( $homeFile );
$pv -> Close();
$file = fopen( $fpath, "w");
fwrite( $file, "<?php\n");
fwrite( $file,"\$last_time=".time().";\n");
fwrite( $file, '?>' );
fclose( $file );
}
?>
第二步
在首頁的模版代碼head標(biāo)簽中引入觸發(fā)文件代碼:
<script src="/plus/autoindex.php" type="text/javascript"></script>
然后手動更新一下首頁,接下來在設(shè)置的時間過了以后如果有用戶訪問首頁就會觸發(fā)自動更新文件,首頁就會自動更新一次。
聲明:
1.本站主要是為了記錄工作、學(xué)習(xí)中遇到的問題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標(biāo)注作者與來源。
1.本站主要是為了記錄工作、學(xué)習(xí)中遇到的問題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標(biāo)注作者與來源。
THE END