寫一個觸發(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ā)自動更新文件,首頁就會自動更新一次。
]]>