原文来自:https://www.zixuephp.com

织梦首页调用随机文章实现自动更新的功能

我们知道织梦多数情况下是生成静态的html文件的,这样一方面可以减少服务器的负荷,另一方面也是为了优化,但是织梦本身静态要手动更新生成,不是自动的,今天我们就来说一下怎样实现自动更新.

(1)调用随机文章:

织梦给出了随机文章调用的参数如下:

  1. {dede:arclistsort=’rand’titlelen=48row=16}
  2. <li><ahref="[field:arcurl/]"title="[field:title/]"target="_blank">[field:title/]</a></li>
  3. {/dede:arclist}

(2)置定时自动更新文件:

复制下面代码,粘贴到一个新文件中,命名为:autoindex.php,上传到ftp的plus文件夹中,看清楚一点是plus文件夹中,错了位置不会生效.

  1. <?php
  2. functionsp_input($text)
  3. {
  4. $text=trim($text);
  5. $text=htmlspecialchars($text);
  6. if(!get_magic_quotes_gpc())
  7. returnaddslashes($text);
  8. else
  9. return$text;
  10. }
  11. $autotime=3600;//自动更新时间,单位为秒,这里我设为一小时,大家可以自行更改。
  12. $fpath="../data/last_time.inc";//记录更新时间文件,如果不能达到目的,请检查是否有读取权限。
  13. include($fpath);
  14. if(emptyempty($last_time))
  15. $last_time=0;
  16. if(sp_input($_GET['renew'])=="now")
  17. $last_time=0;
  18. if((time()-$last_time)>=$autotime)
  19. {
  20. define('DEDEADMIN',ereg_replace("[/\\]{1,}",'/',dirname(__FILE__)));
  21. require_once(DEDEADMIN."/../include/common.inc.php");
  22. require_once(DEDEINC."/arc.partview.class.php");
  23. $templet=“tnbjh/index.htm”;//这里是首页模板位置,当前是dede默认首面位置。
  24. $position="../index.html";
  25. $homeFile=dirname(__FILE__)."/".$position;
  26. $homeFile=str_replace("\\","/",$homeFile);
  27. $homeFile=str_replace("//","/",$homeFile);
  28. $pv=newPartView();
  29. $pv->SetTemplet($cfg_basedir.$cfg_templets_dir."/".$templet);
  30. $pv->SaveToHtml($homeFile);
  31. $pv->Close();
  32. $file=fopen($fpath,"w");
  33. fwrite($file,"<?php\n");
  34. fwrite($file,"\$last_time=".time().";\n");
  35. fwrite($file,'?>');
  36. fclose($file);
  37. }
  38. ?>

然后我们需要在首页的模版代码head标签中加入一段代码:

<script src="/plus/autoindex.php" language="javascript"></script>

然后点击后台生成,更新首页,到此就ok了啊.