織夢使用火車頭采集器采集數(shù)據(jù),發(fā)布文檔后是不會自動生成首頁、上下篇、欄目頁的,我們可以給織夢dedecms添加自動生成代碼來實(shí)現(xiàn),先普及下織夢火車頭采集器知識:
火車頭是一款可以大量采集原創(chuàng)文章的軟件。
火車頭采集器有哪些好處?
1、通用性強(qiáng)
無論新聞、論壇、視頻、黃頁、圖片、下載類網(wǎng)站,只要通過瀏覽器能看到的結(jié)構(gòu)化的內(nèi)容,通過指定匹配規(guī)則,都能采集到您所需要的內(nèi)容。
2、穩(wěn)定、高效
七年磨一劍,軟件不斷更新進(jìn)步,采集速度快,性能穩(wěn)定,占用資源少。
3、擴(kuò)展性強(qiáng)、適用范圍廣
自定義web發(fā)布,自定義主流的數(shù)據(jù)庫的保存和發(fā)布,自定義本地php及.net外部編程接口處理數(shù)據(jù),讓數(shù)據(jù)都能為你所用。
實(shí)現(xiàn)教程
打開 /dede/inc/inc_archives_functions.php 最下面加入3個函數(shù)
/*火車頭采集自動更新主頁*/ function MakeIndex() { global $dsql,$cfg_basedir,$cfg_templets_dir,$cfg_df_style; 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("無法更新網(wǎng)站主頁到:$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(); } /*火車頭采集自動更新欄目www.lol9.cn織夢六久閣*/ function MakeParentType($typeid) { global $dsql; $typediarr = array(); array_push($typediarr,$typeid); $row3 = $dsql->GetOne("Select reid,topid From `dede_arctype` where id=".$typeid); if(!in_array($row3['reid'],$typediarr) and $row3['reid']!=0) array_push($typediarr,$row3['reid']); if(!in_array($row3['topid'],$typediarr) and $row3['topid']!=0) array_push($typediarr,$row3['topid']); require_once(DEDEDATA."/cache/inc_catalog_base.inc"); require_once(DEDEINC."/channelunit.func.php"); require_once(DEDEINC."/arc.listview.class.php"); foreach($typediarr as $typeid) { $lv = new ListView($typeid); $lv->MakeHtml(1,$maxpagesize); } } /*火車頭采集自動更新上下篇*/ function MakePreNext($aid,$typeid) { global $dsql; require_once(DEDEINC.'/arc.archives.class.php'); $aid = intval($aid); $preRow = $dsql->GetOne("SELECT id FROM `dede_arctiny` WHERE id<$aid AND arcrank>-1 AND typeid='$typeid' ORDER BY id DESC"); $nextRow = $dsql->GetOne("SELECT id FROM `dede_arctiny` WHERE id>$aid AND arcrank>-1 AND typeid='$typeid' ORDER BY id ASC"); if(is_array($preRow)) { $envs['aid'] = $preRow['id']; $arc = new Archives($preRow['id']); $arc->MakeHtml(); } if(is_array($nextRow)) { $envs['aid'] = $nextRow['id']; $arc = new Archives($nextRow['id']); $arc->MakeHtml(); } }
繼續(xù)在這個文件中找到
return $revalue;
在它的下面加入
MakePreNext($arcID,$typeid);
MakeIndex();
MakeParentType($typeid);
添加完后是這樣的
這樣添加好后,無論你用火車頭免登錄接口還是WEB發(fā)布模塊,無論是普通文章模型還是圖集模型還是軟件模型,都可以自動生成相關(guān)靜態(tài)文件了。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢用火車頭采集器采集文章后自動生成首頁、欄目頁、上下篇