找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1145|回复: 0

[分享] 织梦dedecms定时自动更新首页的方法

[复制链接]
发表于 2018-7-16 15:33:29 | 显示全部楼层 |阅读模式 来自 中国–河南–新乡
织梦dedecms定时自动更新首页的方法如下:

1、在 根目录/plus 目录下新建一个php文件,命名为:autoindex.php

2、将以下代码复制到 autoindex.php 文件

  1. <?php

  2. function sp_input( $text )

  3. {

  4. $text = trim( $text );

  5. $text = htmlspecialchars( $text );

  6. if (!get_magic_quotes_gpc())

  7. return addslashes( $text );

  8. else

  9. return $text;

  10. }

  11. $autotime = 3600;//自动更新时间,单位为秒,这里我设为一小时,大家可以自行更改。

  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;

  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. /*

  24. $row = $dsql->GetOne("Select * From dede_homepageset");

  25. $dsql->Close();

  26. $templet=$row['templet'];

  27. $position=$row['position'];

  28. */

  29. $templet = “tnbjh/index.htm”;//这里是首页模板位置,当前是dede默认首面位置。

  30. $position = "../index.html";

  31. $homeFile = dirname(__FILE__)."/".$position;

  32. $homeFile = str_replace("\", "/", $homeFile );

  33. $homeFile = str_replace( "//", "/", $homeFile );

  34. $pv = new PartView();

  35. $pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );

  36. $pv -> SaveToHtml( $homeFile );

  37. $pv -> Close();

  38. $file = fopen( $fpath, "w");

  39. fwrite( $file, "<?php\n");

  40. fwrite( $file,"\$last_time=".time().";\n");

  41. fwrite( $file, '?>' );

  42. fclose( $file );

  43. }

  44. ?>
复制代码


3、在首页模板的<head></head>标签中加入如下代码

  1. <script src="/plus/autoindex.php" language="javascript"></script>
复制代码


以上就是本文章的内容,希望对大家有所帮助

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2025-1-9 23:35 , Processed in 0.041352 second(s), 8 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表