帝国CMS自动刷新首页自定义列表的方法

时间:2024年04月10日

/

来源:网络

/

编辑:佚名

帝国CMS自动刷新首页自定义列表具体实现方法如下:
在首页模板中加入下面代码,尽量放在底部。
代码如下:
<script language=”javascript” type=”text/javascript” src=”/e/htmlindex/index_html.php”></script>
在 /e/ 建立文件夹 htmlindex 并设置 777权限,将下面代码保存在 /e/htmlindex/index_html.php
代码如下:
<?php
require("../class/connect.php");
include("../class/db_sql.php");
include("../config/config.php");
include("../class/functions.php");
include("../class/t_functions.php");
require LoadLang("pub/fun.php");
require("../data/dbcache/class.php");
require("../data/dbcache/MemberLevel.php");
include("../class/chtmlfun.php");
$link=db_connect();
$empire=new mysqlquery();
//更新首页
$indextemp=GetIndextemp();//取得模板
NewsBq($classid,$indextemp,1,0);
insert_dolog("");//操作日志
//跟新自定义列表
$b=0;
$sql=$empire->query("select listid,pagetitle,filepath,filetype,totalsql,listsql,maxnum,lencord,listtempid,pagekeywords,pagedescription from {$dbtbpre}enewsuserlist where listid>0 order by listid limit ".$public_r['reuserlistnum']);
while($r=$empire->fetch($sql))
{
    $b=1;
    $newstart=$r[listid];
    ReUserlist($r,"");
}
echo '更新首页,自定义列表页成功';
db_close();
?>

然后在宝塔的计划任务中设置好定时访问这个连接即可。
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。