您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
dede织梦实现未审核内容每分钟审核一篇并更新至首页的方法
林文冲2023-10-13 20:00:13dedecms教程已有人查阅
导读plus下新建文件 makeid.php 内容如下:然后在首页模板里面之后面加入;就ok了
plus下新建文件 makeid.php 内容如下:
<?php
$lasttime=filemtime($_SERVER['DOCUMENT_ROOT']."/index.html");
$interval=180; //更新时间秒为单位180秒=3分钟 3分钟审核一篇 代码号:www.ebingou.cn
if((time()-$lasttime)>$interval)
{
require_once(dirname(__FILE__)."/../include/common.inc.php");
$row = $dsql->GetOne("select id from`dede_archives` where arcrank = -1"); // 找到未审核的文章排序根据你的要求修改下
$aid= $row['id'];
if($aid!=''){
//审核文章
$upquery = "Update `dede_archives` set arcrank =0 where id='$aid';";
$upquery1 = "Update `dede_arctiny` set arcrank =0 where id='$aid';";
$rs = $dsql->ExecuteNoneQuery($upquery);
$rs1 = $dsql->ExecuteNoneQuery($upquery1);
$isremote = (empty($isremote)? 0 : $isremote);
function MakeArt($aid, $mkindex=FALSE, $ismakesign=FALSE, $isremote=0)
{
global $envs, $typeid;
require_once(DEDEINC.'/arc.archives.class.php');
if($ismakesign) $envs['makesign'] = 'yes';
$arc = new Archives($aid);
$reurl = $arc->MakeHtml($isremote);
return $reurl;
}
$arcID=$aid;
$artUrl = MakeArt($aid,true,true,$isremote);
require_once(DEDEINC.'/arc.partview.class.php');
$envs = $_sys_globals = array();
$envs['aid'] = 0;
$pv = new PartView();
$row = $pv->dsql->GetOne('SELECT * FROM `cn_homepageset`');
$templet = str_replace("{style}", $cfg_df_style, $row['templet']);
$homeFile = dirname(__FILE__).'/'.$row['position'];
$homeFile = str_replace("//", "/", str_replace("\\", "/", $homeFile));
$fp = fopen($homeFile, 'w') or die("无法更新网站主页到:$homeFile 位置");
fclose($fp);
$tpl = $cfg_basedir.$cfg_templets_dir.'/'.$templet;
if(!file_exists($tpl))
{
$tpl = $cfg_basedir.$cfg_templets_dir.'/default/index.htm';
if(!file_exists($tpl)) exit("无法找到主页模板:$tpl ");
}
$GLOBALS['_arclistEnv'] = 'index';
$pv->SetTemplet($tpl);
$pv->SaveToHtml($homeFile);
$pv->Close();
exit();
}else exit();
}
?>
然后在首页模板里面之后面加入
<script src="/plus/mkaid.php" language="javascript"></script>
就ok了
本文标签:
很赞哦! ()
相关文章
- dede织梦支付宝接口常见错误代码和解决方法介绍
- dede织梦采集图片不全怎么办
- dede织梦读取附加信息出错怎么办
- dede织梦采集文章只显示列表第一页的实现方法
- dede织梦出现Upload filetype not allow ! 的解决方法
- dede织梦tag Engine Create File False的原因和解决方法
- dede织梦tag标签修改自动提取字节数的方法
- dede织梦likearticle调用全站相关文章的方法
- dede织梦版权去除powered by dedecms的方法
- dede织梦上传不了缩略图“上传失败,请检查配置”的解决方法
- dede织梦后台登陆提示验证码错误怎么办
- dede织梦文章列表 “隔行换色” 的实现方法
随机图文
-
dedecms友情链接显示LOGO图片链接的方法
进入后台–系统设置—默认模板管理,找到主页模块index.htm,点修改。 -
dedecms织梦栏目列表分页链接优化实现方法
DEDE默认栏目列表分页链接如:1.找到\include\arc.listview.class.php这个文件,将$typedir= ereg_replace('^(.*)/','',$this->Fields['typedir']);这种代码添加到“//获得上一页和主页的链接”前; -
dede织梦php.ini register_globals must is Off!解决办法
dedecms在安装和使用的过程当中,由于服务器所调用的数据库与MYSQL数据库表的指向问题,有时候会出现php.ini register_globals must is Off!这一个错误提示。它代表什么意思呢? -
dede织梦后台登陆提示验证码错误的修改方法
浅谈“各种dede织梦后台登陆验证码错误或不显示解决方法!大家知道,常见的就是验证码输入明明是正确但却提示不正确,或者压根儿不显示。说一下碰到这种情况的几种原因:
留言与评论 (共有 条评论) |