分享:织梦dede定时更新首页生成HTML的方法

 织梦给出了随即调用标签代码: 

 
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\n");
38   fwrite( $file,"\$last_time=".time().";\n");
39   fwrite( $file, '?>' );  fclose( $file );
40   }
41 ?>

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

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

然后点击后台生成,更新首页。
接下来后等待时间的验证结果 

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

织梦DEDECMS 栏目文章文章命名规则修改, 每次添加栏目的时候 都要改文章命名规则,十分麻烦, 修改下面这个地方就可以一改永亦,织梦模板网为您解答 找到\include\common.inc.php 搜索 $cfg_df_namerule 把: $cfg_df_namerule = {typedir}/{Y}/{M}{D}/{aid
当我们通过{dede:arclist keyword=关键词}来调用文章列表时,你会发现只在其中一个栏目里生效,在其他栏目,仍然显示上一次的关键词。 原因是由于arclist的缓存导致的。 只需修改/include/taglib/arclist.lib.php文件,大概在384行: $taghash = md5(seriali
我们在使用织梦dedecms数据库内容替换时候,经常遇到 安全码 显示的无法识别或者不清晰,这个安全码的位置是在核心 - 批量维护 - 数据库内容替换,如果识别不了,这个页面还没有改变验证码的地方,只能重新刷新页面,如果我们不想要这个安全码的话,要怎么操
今天一个客户在安装织梦dedecms时候,安装完成后登录后台就出现Safe Alert Request Error step 2,常用dedecms的朋友都知道,这是织梦的安全机制,在程序觉得有sql注入等攻击时候,会有这种提示。 1、起初我以为是文件没传全,让这个朋友重新传了文件上去安
很多人在修改织梦会员中心模板的时候 会遇到 明明修改了,为什么还是原来样式?确认文件没有修改错误的情况下,可能是缓存问题,你 只要把 /data/tplcache/ 里面的文件全部删除,重新访问即可。
dede织梦搜索伪静态,伪静态设置成功后,访问URL地址效果如下: 搜索页 http://www.baidu.com/search/织梦.html 搜索分页 http://www.baidu.com/search/织梦-2.html 本教程也适用于手机端。 开启伪静态: 后台-系统参数-核心设置-开启伪静态 后台-系统参数-