帝國CMS新聞模型轉(zhuǎn)成文章模型的方法
帝國CMS 新聞模型轉(zhuǎn)成文章模型的方法
1、數(shù)據(jù)備份
非常重要。萬一在轉(zhuǎn)換過程中出現(xiàn)意外,確保老數(shù)據(jù)安全部丟失。
2、數(shù)據(jù)庫轉(zhuǎn)換
將以下代碼保存為一個php文件,文件編碼格式與你網(wǎng)站編碼相同,代碼中的參數(shù)設(shè)置部分按照實際情況來填寫。
假設(shè)你為此新建了一個名為 zh.php 的文件,那么將此文件放到 e/update/ 文件夾中。那么你這時在瀏覽器中執(zhí)行以下網(wǎng)址:
http://你的網(wǎng)址/e/update/zh.php?tochange=1
此程序會分組轉(zhuǎn)換數(shù)據(jù)。
請注意:
(1)不能重復(fù)轉(zhuǎn)換,否則數(shù)據(jù)丟失。
(2)轉(zhuǎn)換完之后請立即在服務(wù)器上刪除此文件。
(3)此程序適用于帝國cms7.0及后續(xù)版本。
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
@set_time_limit(1000);
//********************* 參數(shù)設(shè)置開始 *********************
$newstb="gushi"; //需要轉(zhuǎn)換的數(shù)據(jù)表
$cf='newstext';//需要轉(zhuǎn)換的字段名
$fa=1;//字段位置,0為主表,1為副表
$changeline=50; //每組轉(zhuǎn)換數(shù)
//********************* 參數(shù)設(shè)置結(jié)束 *********************
if($_GET['tochange']==1)
{
include("../class/connect.php");
include("../class/db_sql.php");
include("../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
dp_ChangeNewsToArticle($_GET['start']);
}
//開始轉(zhuǎn)換
function dp_ChangeNewsToArticle($start=0){
global $empire,$newstb,$cf,$fa,$changeline,$dbtbpre;
$start=(int)$start;
if($start==0){
$ckist=$empire->fetch1("select fid,savetxt from {$dbtbpre}enewsf where tbname='$newstb' and f='$cf' limit 1");
if(!$ckist['fid']){
exit("參數(shù)設(shè)置錯誤");
}
if(!$ckist['savetxt']){
//字段表
$empire->query("update {$dbtbpre}enewsf set savetxt=1 where tbname='$newstb' and f='$cf' limit 1");
//組合存文本
TogSaveTxtF(1);
//更新緩存
GetConfig(1);
}
}
$b=0;
$tbname=$fa?$newstb."_data_1":$newstb;
$sql=$empire->query("select id,classid,".$cf." from {$dbtbpre}ecms_".$tbname." where id>$start order by id limit ".$changeline);
while($r=$empire->fetch($sql)){
$b=1;
$newid=$r['id'];
$newstext=dp_ReturnChangeNewstextUrl($r[$cf],$r['id']);
$empire->query("update {$dbtbpre}ecms_".$tbname." set ".$cf."='$newstext' where id='$newid' limit 1");
}
if($b==0)
{
echo"恭喜您!轉(zhuǎn)換完畢。";
exit();
}
echo"一組數(shù)據(jù)轉(zhuǎn)換完畢,正進入下一組 (<font color=red><b>".$newid."</b></font>)......<script>self.location.href='index.php?tochange=1&start=$newid';</script>";
exit();
}
//返回內(nèi)容地址
function dp_ReturnChangeNewstextUrl($value,$id){
global $public_r,$newstb,$cf;
//存放文本
if(strstr($public_r['savetxtf'],",".$newstb.".".$cf.","))
{
$truetime=time();
//建立目錄
$thetxtfile=GetFileMd5().$id;
$truevalue=MkDirTxtFile(date("Y/md",$truetime),$thetxtfile);
//寫放文件
EditTxtFieldText($truevalue,$value);
$value=$truevalue;
}
else{
exit("參數(shù)設(shè)置錯誤");
}
return $value;
}
?>
<html>
<head>
<title>新聞模型轉(zhuǎn)文章模型程序</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
a:link { COLOR: #000000; TEXT-DECORATION: none }
a:visited { COLOR: #000000 ; TEXT-DECORATION: none }
a:active { COLOR: #000000 ; TEXT-DECORATION: underline }
a:hover { COLOR: #000000 ; TEXT-DECORATION:underline }
.home_top { border-top:2px solid #4798ED; }
.home_path { background:#4798ED; padding-right:10px; color:#F0F0F0; font-size: 11px; }
td, th, caption { font-family: "宋體"; font-size: 12px; color:#000000; LINE-HEIGHT: 165%; }
.hrLine{MARGIN: 0px 0px; BORDER-BOTTOM: #807d76 1px dotted;}
</style>
</head>
<body>
<p><br>
<br>
</p>
<form method="get" action="index.php" onsubmit="return confirm('確認(rèn)要執(zhí)行?');">
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#0472BC">
<tr>
<td height="25"><div align="center"><font color="#FFFFFF" size="3"><strong>新聞模型轉(zhuǎn)文章模型程序</strong></font></div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="50">
<div align="center">
<input type=submit name=ok value="點擊開始轉(zhuǎn)換">
<input type=hidden name="tochange" value=1>
</div></td>
</tr>
</table>
</form>
</body>
</html>
3、模板修改
如果你在之前模板中用php代碼調(diào)用過被轉(zhuǎn)換的字段,則此時需要用函數(shù) GetTxtFieldText 來讀取。
例如,在之前你調(diào)用newstext用代碼:
<?=$navinfor['newstext']?>
newstext轉(zhuǎn)換成存文本之后必調(diào)用代碼是:
<?=GetTxtFieldText($navinfor['newstext'])?>
4、補充說明:新聞模型與文章模型的區(qū)別
新聞系統(tǒng)模型的內(nèi)容(newstext)是存放數(shù)據(jù)庫的;而文章系統(tǒng)模型的內(nèi)容(newstext)是存放于文本文件。對于數(shù)據(jù)量比較大的,推薦使用文章系統(tǒng)模型。
新聞系統(tǒng)模型支持內(nèi)容(newstext)搜索;而文章系統(tǒng)模型不支持內(nèi)容(newstext)搜索。
聲明:
1.本站主要是為了記錄工作、學(xué)習(xí)中遇到的問題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標(biāo)注作者與來源。
1.本站主要是為了記錄工作、學(xué)習(xí)中遇到的問題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標(biāo)注作者與來源。
THE END