知识屋:更实用的电脑技术知识网站
所在位置:首页 > 站长园地 > 站长入门

DedeCMS实现每分钟审核一篇文章并生成首页

发布时间:2012-06-13 13:11:14作者:知识屋

 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>

  这样 就可以了,方法比较简单也比较实用。

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜