網(wǎng)站如果是采集的,一次性審核發(fā)布大量采集信息不利于網(wǎng)站seo,使用這款帝國(guó)CMS自動(dòng)審核發(fā)布腳本就可以輕松解決這個(gè)問題。比帝國(guó)自帶的計(jì)劃任務(wù)功能好,不用開啟后臺(tái)才運(yùn)行,腳本放到服務(wù)器上后加入服務(wù)器的計(jì)劃任務(wù)便可以每天定時(shí)審核發(fā)布信息。
帝國(guó)CMS自動(dòng)審核腳本
<?php //使用密碼控制 if(empty($_GET['pwd']) || $_GET['pwd'] != '腳本運(yùn)行密碼,請(qǐng)自行修改'){ die('Fuck you! -www.zztuku.com!'); } define ( 'EmpireCMSAdmin', '1' ); require ("../class/connect.php"); require ("../class/db_sql.php"); require ("../class/functions.php"); require ("../class/t_functions.php"); require ("../data/dbcache/class.php"); require ("../data/dbcache/MemberLevel.php"); $link = db_connect (); $empire = new mysqlquery (); $enews = $_POST ['enews']; if (empty ( $enews )) { $enews = $_GET ['enews']; } //參數(shù) $news_table = "news"; //新聞表 $news_num = 1; //每次審核條數(shù) /** *使用時(shí)間控制審核的欄目,下面的代碼因?yàn)闄谀刻?每天分三個(gè)時(shí)段更新 *實(shí)驗(yàn)證明這個(gè)效果是不好的,收錄只有早上的那次 * $hours = date ( 'H' ); switch($hours){ //頻道和列表 case '8': $where = "bclassid = 0 or classid between 33 and 86"; break; case '13': $where = "bclassid = 0 or classid between 87 and 139"; break; case '22': $where = "bclassid = 0 or classid between 140 and 192"; break; default: $where = "classid='10000'"; } */ $where = '1'; //審核新聞模型全部欄目 $class_list = $empire->query ( "SELECT classid,islast from {$dbtbpre}enewsclass where $where" ); $class = array (); $pclass = array (); while ( $r = $empire->fetch ( $class_list ) ) { if ($r ['islast'] == '0') { array_push ( $pclass, $r ['classid'] ); // 非終極欄目不可以發(fā)不信息,所以不參與信息審核 } else { array_push ( $class, $r ['classid'] ); } } foreach ( $class as $key => $val ) { ecmscheck ( $val, $news_table, $news_num ); // 審核 } // 刷新非終極欄目 foreach ( $pclass as $key => $value ) { echo '上級(jí)欄目'.$value.'已經(jīng)更新<hr/>'; ReListHtml ( $value, 1 ); } ReIndex(); //刷新首頁(yè) /** * * @param $classid * @param $table * @param $num */ function ecmscheck($classid, $table, $num) { global $empire, $class_r, $dbtbpre; $time = time (); // 每周一審核的設(shè)置為推薦 $isgood = '0'; $day = strftime ( "%A" ); if ($day == 'Monday') { $isgood = '1'; } $res = $empire->query ( "select id from {$dbtbpre}ecms_" . $table . "_check where classid =" . $classid . " ORDER BY `truetime` ASC LIMIT {$num}" ); while ( $r = $empire->fetch ( $res ) ) { $data [] = $r ['id']; } CheckNews_auto ( $classid, $data ); } /** * 審核信息 * @param $classid * @param $id */ function CheckNews_auto($classid, $id) { global $empire, $class_r, $dbtbpre, $emod_r, $adddatar; $classid = ( int ) $classid; $count = count ( $id ); $time = time(); //每周一審核的設(shè)置為推薦 $isgood = strftime('%A') == 'Monday'?1:0; for($i = 0; $i < $count; $i ++) { $infoid = ( int ) $id [$i]; $infor = $empire->fetch1 ( "select * from {$dbtbpre}ecms_" . $class_r [$classid] [tbname] . "_check where id='$infoid' limit 1" ); //$picurl = empty($infor['titlepic'])?'/images/smallpic/'.rand(1,300).'.jpg':$infor['titlepic']; //為了網(wǎng)站能好看點(diǎn)設(shè)置一個(gè)1-300的隨機(jī)圖片 $res = $empire->query("update {$dbtbpre}ecms_".$class_r[$classid][tbname]."_check set truetime='$time',newstime='$time',lastdotime='$time',isgood='$isgood' where id='$infoid' limit 1"); $sql = $empire->query ( "update {$dbtbpre}ecms_" . $class_r [$classid] [tbname] . "_index set checked=1,truetime='$time',newstime='$time',lastdotime='$time' where id='$infoid'" ); // 未審核表轉(zhuǎn)換 MoveCheckInfoData ( $class_r [$classid] [tbname], 0, $infor ['stb'], "id='$infoid'" ); // 更新欄目信息數(shù) AddClassInfos ( $infor ['classid'], '', '+1' ); // 刷新信息 GetHtml ( $infor ['classid'], $infor ['id'], $infor, 0 ); echo '信息 '.$infor ['id'].' 內(nèi)容頁(yè)已經(jīng)更新<hr/>'; // 刷新列表 ReListHtml ( $infor ['classid'], 1 ); echo '終極欄目 '.$infor ['classid'].' 已經(jīng)更新<hr/>'; } } //刷新首頁(yè) function ReIndex(){ $indextemp=GetIndextemp();//取得模板 NewsBq($classid,$indextemp,1,0); echo '首頁(yè)已經(jīng)刷新'; }
腳本需要根據(jù)自己的情況適當(dāng)修改調(diào)整。因?yàn)槲矣玫腖inux服務(wù)器,所以運(yùn)行crontab就可以了,Windows的請(qǐng)自行尋找計(jì)劃任務(wù)方法。寶塔面板直接添加計(jì)劃任務(wù)就行。