DedeCMS实现每分钟审核一篇文章并生成首页的方法
如遇下载链接蓝奏网盘打不开lanzous替换成lanzoux尝试! 广告
DedeCMS发布文章时通常是发布即审核,dede每分钟审核一篇文章并生成首页的实现方法对于使用dedecms采集功能的网站更有利,感兴趣的朋友不仿试试!
首页在plus下新建文件 makeid.php 内容如下:
<?php $lasttime=filemtime($_SERVER[‘DOCUMENT_ROOT’].”/index.html”); $interval=180; //更新时间秒为单位180秒=3分钟 3分钟审核一篇 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 `dede_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>
这样 就可以了,方法比较简单也比较实用。
NOTICE:【咨询风格酷】客服微信:wwwxmamnet
NOTICE:【风格酷模板网②群】QQ群:288678775
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉如果源码网盘地址失效!或有其他问题,请点我报错,谢谢合作!
☉人民币与积分汇率为1比10,即1元=10积分.有任何疑问请联系客服!
☉如有其他问题,请加网站客服QQ(1131734965)进行交流。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
☉源码、模板等资源会随着技术、环境的升级而存在部分问题,还请慎重选择。