好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 網站建設 > 建站知識 > 分享:織夢dede定時更新首頁生成HTML的方法

分享:織夢dede定時更新首頁生成HTML的方法

POST TIME:2018-04-21 21:55

織夢給出了隨即調用標簽代碼:

 
1 {dede:arclist sort='rand' titlelen=48 row=16}
2 <li><a href="[field:arcurl/]" title="[field:title/]" target="_blank">[field:title/]</a></li>
3 {/dede:arclist}

但是隨著織夢生成文件,似乎這個動態調用代碼不是那么管用,為了實現隨時間更新的效果,織夢人站長之家給出了詳細的設置方法:復制下面代碼,粘貼到一個新文件中,命名為:autoindex.php,上傳到ftp的plus文件夾中,看清楚一點是plus文件夾中,錯了位置不會生效:

 
01 <?php
02 function sp_input( $text )
03 {
04 $text = trim( $text );
05 $text = htmlspecialchars( $text );
06 if (!get_magic_quotes_gpc())
07 return addslashes( $text );
08 else
09 return $text;
10 }
11 $autotime = 10800;//自動更新時間,單位為秒
12 $fpath = "../data/last_time.inc";//記錄更新時間文件,如果不能達到目的,請檢查是否有讀取權限。
13 include( $fpath );
14 if( empty($last_time))
15 $last_time = 0;
16 if( sp_input($_GET['renew'])=="now")
17 $last_time = 0; if((time()-$last_time)>=$autotime )
18 {
19 define('DEDEADMIN', ereg_replace("[/\]{1,}",'/',dirname(__FILE__) ) );
20 require_once(DEDEADMIN."/../include/common.inc.php");
21 require_once(DEDEINC."/arc.partview.class.php");
22 /* $row = $dsql->GetOne("Select * From dede_homepageset");
23 $dsql->Close();
24 $templet=$row['templet'];
25 $position=$row['position'];
26 */
27 $templet = “default/index.htm”;//這里是首頁<U><A href="http://www.dederen.com" target=_blank>模板</A></U>位置,當前是dede默認首面位置。
28 $position = "../index.html";
29 $homeFile = dirname(__FILE__)."/".$position;
30 $homeFile = str_replace("\", "/", $homeFile );
31 $homeFile = str_replace( "//", "/", $homeFile );
32 $pv = new PartView();
33 $pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );
34 $pv -> SaveToHtml( $homeFile );
35 $pv -> Close();
36 $file = fopen( $fpath, "w");
37 fwrite( $file, "<?php ");
38 fwrite( $file,"$last_time=".time()."; ");
39 fwrite( $file, '?>' ); fclose( $file );
40 }
41 ?>

然后我們需要在首頁的模版代碼head標簽中加入一段代碼:

 
1 <script src="/plus/autoindex.php" type="text/javascript"></script>

然后點擊后臺生成,更新首頁。
接下來后等待時間的驗證結果




收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266