假設(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('確認要執(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>
如果你在之前模板中用php代碼調(diào)用過被轉(zhuǎn)換的字段,則此時需要用函數(shù) GetTxtFieldText 來讀取。
例如,在之前你調(diào)用newstext用代碼:
<?=$navinfor['newstext']?>
newstext轉(zhuǎn)換成存文本之后必調(diào)用代碼是:
<?=GetTxtFieldText($navinfor['newstext'])?>
新聞系統(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)搜索。
]]>
第一種方法:切割infotags字段
/* 列表頁顯示tag 開始*/
$fr=$empire->fetch1("select infotags from {$dbtbpre}ecms_".$class_r[$r['classid']]['tbname']."_data_{$r[stb]} where id='$r[id]'");
$tagstr='';
$infotags_r=explode(',',$fr['infotags']);
$tagscount=count($infotags_r);
for($i=0;$i<$tagscount;$i++){
$tagname=$infotags_r[$i];
if(empty($tagname)){
continue;
}
//tagname的動態(tài) 或 偽靜態(tài) 時的鏈接,采用以下2行代碼
/* $tu=eReturnRewriteTagsUrl(0,$tagname);
$tagslink=$tu['pageurl'];*/
//tagid式的動態(tài)鏈接,采用以下6行代碼
$tt=$empire->fetch1("select * from {$dbtbpre}enewstags where tagname='".$tagname."' limit 1");
if(!$tt['tagid']){
continue;
}else{
$tagslink=$public_r['newsurl'].'e/tags/?tagid='.$tagid;;
}
//采用東坡網(wǎng)靜態(tài)化插件時的tag鏈接,采用以下6行代碼
/* $tt=$empire->fetch1("select * from {$dbtbpre}enewstags where tagname='".$tagname."' limit 1");
if(!$tt['tagid']){
continue;
}else{
$tagslink=user_HtmlTagLink($tt['tagid']);
}*/
//返回單獨一個tag的代碼
$tagstr.='<a title="'.$tagname.'" target="_blank" href="'.$tagslink.'">'.$tagname.'</a>';
}
/*結(jié)束*/
$listtemp='其它代碼'.$tagstr.'其它代碼';
第二種方法:從phome_enewstagsdata表中提取
/* 列表頁顯示tag 開始*/
$tagstr='';
$tsql=$empire->query("select tagid from {$dbtbpre}enewstagsdata where id='$r[id]' and classid='$r[classid]' ");
while($tr=$empire->fetch($tsql)){
$tt=$empire->fetch1("select * from {$dbtbpre}enewstags where tagid=".$tr['tagid']." limit 1");
if(!$tt['tagid']){
continue;
}else{
//tagname的動態(tài) 或 偽靜態(tài) 時的鏈接,采用以下1行代碼
//$tagslink=eReturnRewriteTagsUrl(0,$tt['tagname'],1);
//tagid式的動態(tài)鏈接,采用以下1行代碼
$tagslink=$public_r['newsurl'].'e/tags/?tagid='.$tt['tagid'];
//采用東坡網(wǎng)靜態(tài)化插件時的tag鏈接,采用以下1行代碼
//$tagslink=user_HtmlTagLink($tt['tagid']);
}
$tagstr.='<a title="'.$tagname.'" target="_blank" href="'.$tagslink.'">'.$tt['tagname'].'</a>';
}
/*結(jié)束*/
$listtemp='其它代碼'.$tagstr.'其它代碼';
說明:
1、代碼中的tag鏈接都有3種方式,可以根據(jù)實際情況進行選擇。
2、以上代碼放入列表內(nèi)容模板(list.var) ,必須開啟使用程序代碼。
]]>修改 e\class\connect.php文件
搜索
function eReturnRewriteTagsUrl($tagid,$tagname,$ecms=0){
找到函數(shù)eReturnRewriteTagsUrl,將此函數(shù)刪除或注釋掉,換成下面的代碼:
//返回TAGS列表偽靜態(tài)
function eReturnRewriteTagsUrl($tagid,$tagname,$ecms=0){
global $public_r,$empire,$dbtbpre;
if(!$tagid){
$tagname=RepPostVar($tagname);
if(!$tagname)
{
$r['pageurl']=$public_r['newsurl'];
$r['rewrite']=0;
return $r;
}
$tagr=$empire->fetch1("select tagid,num from {$dbtbpre}enewstags where tagname='$tagname' limit 1");
if(!$tagr['tagid'])
{
$r['pageurl']=$public_r['newsurl'];
$r['rewrite']=0;
return $r;
}
$tagid=$tagr['tagid'];
}
if(empty($public_r['rewritetags']))
{
$r['pageurl']=$public_r['newsurl']."e/tags/?tagid=".$tagid;
$r['rewrite']=0;
}
else
{
if($ecms==1)
{
$r['pageurl']=$public_r['newsurl'].str_replace(array('[!--tagname--]','[!--page--]'),array($tagid,0),$public_r['rewritetags']);
}
else
{
$r['pageurl']=$public_r['newsurl'].str_replace('[!--tagname--]',$tagid,$public_r['rewritetags']);
}
$r['rewrite']=1;
}
return $r;
}
修改e\tags\index.php文件
這里主要是修改分頁函數(shù),找到如下所示代碼,按照以下代碼將原來的部分代碼注釋掉。
/*
if($tagr['tagid']&&empty($add)&&$search=='&tagname='.$tagname.'&line='.$public_r['tagslistnum'].'&tempid='.$public_r['tagstempid'])
{
*/
//偽靜態(tài)
$pagefunr=eReturnRewriteTagsUrl($tagid,$tagname,0);
$pagefunr['repagenum']=0;
//分頁
if($pagefunr['rewrite']==1)
{
$listpage=InfoUsePage($num,$line,$page_line,$start,$page,$search,$pagefunr);
}
else
{
$listpage=page1($num,$line,$page_line,$start,$page,$search);
}
/*
}
else
{
$listpage=page1($num,$line,$page_line,$start,$page,$search);//分頁
}
*/
后臺設(shè)置tag偽靜態(tài)
按照默認,設(shè)置成:tags-[!--tagname--]-[!--page--].html 即可。
服務(wù)器偽靜態(tài)規(guī)則
apache的偽靜態(tài)規(guī)則如下,其它類型服務(wù)器請對照此自行修改:
RewriteRule ^tags-(.*)-(.*)$ e/tags/index.php?tagid=$1&page=$2
]]>
帝國CMS如何通過TAG調(diào)用相關(guān)文章的方法:
自定義函數(shù)user_OtherLink ,將此函數(shù)放入 e\class\userfun.php 文件中。
//根據(jù)tag獲取相關(guān)信息
function user_OtherLink($num,$classid=0,$mid=0){
global $dbtbpre,$empire,$navinfor,$class_r;
if(empty($navinfor['infotags'])){
return '暫無相關(guān)信息';
}
if($mid&&$classid&&$class_r[$classid]['modid']!=$mid){
return '暫無相關(guān)信息';
}
$tr=$empire->fetch1("select otherlinktemp,otherlinktempsub,otherlinktempdate from ".GetTemptb("enewspubtemp")." limit 1");
$temp_r=explode("[!--empirenews.listtemp--]",$tr['otherlinktemp']);
$str='';
$tagsql=$empire->query("select * from {$dbtbpre}enewstagsdata where id='$navinfor[id]' and classid='$navinfor[classid]'");
$i=0;
$isprint=array();
while($tagr=$empire->fetch($tagsql)){
if($i>=$num){
break;
}
$gsql=$empire->query("select * from {$dbtbpre}enewstagsdata where tagid='$tagr[tagid]'");
while($gr=$empire->fetch($gsql)){
$myprint='id'.$gr['id'].'class'.$gr['classid'];
if(array_search($myprint,$isprint)!==false){
continue;
}
$isprint[]=$myprint;
if($classid&&$classid!=$gr['classid']){
continue;
}
if($mid&&$mid!=$gr['mid']){
continue;
}
if($gr['id']==$navinfor['id']&&$gr['classid']==$navinfor['classid']){
continue;
}
$tbname=$class_r[$gr['classid']]['tbname'];
if(!$tbname||InfoIsInTable($tbname)){
continue;
}
$r=$empire->fetch1("select * from {$dbtbpre}ecms_".$tbname." where id='$gr[id]' limit 1");
if(!$r['id']){
continue;
}
$str.=RepOtherTemp($temp_r[1],$r,$tr);
$i+=1;
if($i>=$num){
break;
}
}
}
$keyboardtext=$temp_r[0].$str.$temp_r[2];
if($str){
return $keyboardtext;
}else{
return '暫無相關(guān)信息';
}
}
函數(shù)使用說明:user_OtherLink(調(diào)用條數(shù),指定欄目id,指定模型id) ;
相關(guān)文章模板采用的是公共模板里的相關(guān)信息模板。
調(diào)用代碼:
<?=user_OtherLink(10,0,1)?>
]]>
最終想要的效果是:
1、方向鍵左、右鍵實現(xiàn)打開上一篇、下一篇
2、回車鍵返回欄目目錄。
實現(xiàn)方法:
將以下代碼放置于內(nèi)容頁模板底部。
<script type="text/javascript">
document.onkeydown=pageEvent;
var prevpage="[!--news.url--]e/public/GotoNext/?enews=pre&classid=[!--classid--]&id=[!--id--]";
var nextpage="[!--news.url--]e/public/GotoNext/?enews=next&classid=[!--classid--]&id=[!--id--]";
var listpage="[!--class.url--]";
function pageEvent(evt){
evt=evt||window.event;
var key=evt.which||evt.keyCode;
if(key==13) location=listpage;
if(key==37) location=prevpage;
if(key==39) location=nextpage;
};
</script>
完成!
]]>以下修改方法可以同時用于 e/data/html/list/alllistinfo.php文件 和 e/data/html/list/listinfo.php文件,或者自定義的系統(tǒng)模型列表文件。
function dp_editmoreinfotitle($add,$userid,$username){
global $empire,$dbtbpre,$class_r;
$classid=(int)$add['classid'];
$infoid=$add['infoid'];
$n1=$add['title'];
$count=count($infoid);
$tbname=$class_r[$classid]['tbname'];
if(!$classid||!$tbname||!$count)
{
printerror("請選擇需要修改的信息",'history.go(-1)',1,0,1);
}
//操作權(quán)限
$doselfinfo=CheckLevel($userid,$username,$classid,"news");
if(!$doselfinfo['doeditinfo'])//編輯權(quán)限
{
printerror("沒有足夠的權(quán)限",'history.go(-1)',1,0,1);
}
$dopubid=0;
$donum=0;
$dolog='';
//主表
$infotb='';
for($i=0;$i<$count;$i++)
{
$doinfoid=(int)$infoid[$i];
if(empty($infotb))
{
//索引表
$index_r=$empire->fetch1("select classid,checked from {$dbtbpre}ecms_".$tbname."_index where id='$doinfoid' limit 1");
if(!$index_r['classid'])
{
continue;
}
//返回表
$infotb=ReturnInfoMainTbname($tbname,$index_r['checked']);
}
$do1=$n1[$i];
$empire->query("update ".$infotb." set title='$do1' where id='$doinfoid'");
}
printerror("修改成功",$_SERVER['HTTP_REFERER'],1,0,1);
}
$enews=$_POST['enews'];
if($enews=="EditMoreInfoTitle"){
hCheckEcmsRHash();
dp_editmoreinfotitle($_POST,$logininid,$loginin);
}
將<?=$r[title]?>?和上下一行的 <a >和</a>刪除(一共刪除3行),換成代碼:
<input type="text" name="title[]" value="<?=$oldtitle?>" style="width:99%">
在其上插入一行,輸入代碼:
<input type="submit" name="Submit7" value="批量修改標題" onclick="document.listform.enews.value='EditMoreInfoTitle';document.listform.action='ListAllInfo.php';">
1、修改完成后樣式可能不是人人喜歡,可以根據(jù)自己的喜好做樣式修改。
2、網(wǎng)站備份時請備份e/data/html/list文件夾。
3、可以擴展成批量修改作者、來源、圖片、tag、關(guān)鍵字等等。
1、批量修改會員信息
2、批量修改tag屬性
3、批量修改信息標題、文件名
]]>將以下函數(shù)插入到 e/class/userfun.php 文件中
function f_picurl($mid,$f,$isadd,$isq,$value,$cs){
global $empire,$dbtbpre,$public_r;
if($value){
return $value;
}
$picurl=$_POST['picurl'];
$classid=(int)$_POST['classid'];
if(empty($picurl)||!$classid){
return $value;
}
$r=DoTranUrl($picurl,$classid);
if(empty($r['tran'])){
return $value;
}
$r['filesize']=(int)$r['filesize'];
$filepass=(int)$_POST['filepass'];
$username='picurl';
$sql=eInsertFileTable($r['filename'],$r['filesize'],$r['filepath'],$username,$classid,$r['filename'],1,$filepass,$filepass,$public_r['fpath'],0,$modtype,$fstb);
return $r['url'];
}
在“后臺增加信息處理函數(shù)”處填上 f_picurl ,然后修改“輸入表單替換html代碼”成以下代碼:
手動上傳:<input name="titlepic" type="text" id="titlepic" value="<?=$ecmsfirstpost==1?"":ehtmlspecialchars(stripSlashes($r[titlepic]))?>" size="45">
<a onclick="window.open('ecmseditor/FileMain.php?type=1&classid=<?=$classid?>&infoid=<?=$id?>&filepass=<?=$filepass?>&sinfo=1&doing=1&field=titlepic<?=$ecms_hashur[ehref]?>','','width=700,height=550,scrollbars=yes');" title="選擇已上傳的圖片"><img src="../data/images/changeimg.gif" border="0" align="absbottom"></a>
<br>
遠程下載:<input name="picurl" type="text" id="picurl" size="45">
有時需要獲取帝國cms當(dāng)前頁的鏈接,對于有分頁的頁面來說,首頁好辦,但其它分頁就麻煩了。這里東坡網(wǎng)分享一個添加自定義標簽獲取鏈接的方法。
修改好之后,在模板中用 [!--now.url--] 標簽獲取當(dāng)前頁鏈接,此鏈接不包含網(wǎng)站首頁地址。適用于內(nèi)容頁、欄目列表、專題列表、自定義列表。
本文是 多端同步生成和刪除插件 的輔助文檔,但沒安裝此插件也可以使用此方法。
查找?//替換分頁數(shù)?,一共兩處,在其上一行插入代碼;
if($pagenum==1){
$nowurl=$dolink;
}else{
$nowurl=$dolink."index_".$ok.$dotype;
}
$nowurl=substr($nowurl,strlen($public_r['newsurl']));
$string=str_replace('[!--now.url--]',$nowurl,$string);
下圖為第一步第一處修改示例
下圖為第一步第二處修改示例
如圖所示,紅框內(nèi)是剛添加的代碼。因為我的程序修改過其它地方,所以圖中顯示的行號僅供參考,下同。
查找 $string=str_replace('[!--title.select--] ,一共兩處,在第一處插入代碼:
if($j==1){
$nowurl=$dolink.$add['filename'].$filetype;
}else{
$nowurl=$dolink.$add['filename'].'_'.$j.$filetype;
}
$nowurl=substr($nowurl,strlen($public_r['newsurl']));
$string=str_replace('[!--now.url--]',$nowurl,$string);
第二處插入代碼:
$nowurl=$dolink.$add['filename'].$filetype;
$nowurl=substr($nowurl,strlen($public_r['newsurl']));
$string=str_replace('[!--now.url--]',$nowurl,$string);
如圖所示,上方紅框內(nèi)是第一處插入的代碼,下方紅框是第二處插入的代碼。
第一步:復(fù)制文件
將 e/action/ShowInfo.php 文件復(fù)制一份,并重命名,比如命名為 MoreInfo.php
第二步:修改文件
打開剛才復(fù)制并重命名的文件,并進行修改
(1)找到 //moreport 和 //緩存,大約在35行至46行之間,這之間的幾行代碼刪除
也就是如下代碼刪除:
//moreport
if(Moreport_ReturnMustDt())
{
$class_r[$classid]['showdt']=2;
}
//是否支持動態(tài)內(nèi)容頁
if($class_r[$classid]['showdt']!=2)
{
$titleurl=sys_ReturnBqTitleLink($r);
Header("Location:$titleurl");
exit();
}
(2)查找 $newstemp_r= ,在其上一行插入代碼:
if($_GET['newstempid']){
$r['newstempid']=$_GET['newstempid'];
}
也就是,修改后的代碼變成了:
//取得內(nèi)容模板
$r[newstempid]=$r[newstempid]?$r[newstempid]:$class_r[$r[classid]][newstempid];
if($_GET['newstempid']){
$r['newstempid']=$_GET['newstempid'];
}
$newstemp_r=$empire->fetch1("select tempid,temptext,showdate from ".GetTemptb("enewsnewstemp")." where tempid='$r[newstempid]'");
第三步:使用方法
訪問地址是/e/action/MoreInfo.php?classid=欄目id&id=信息id&newstempid=此頁的內(nèi)容模板id
可以看到,訪問地址與自帶的動態(tài)內(nèi)容模板類似,但要多一個newstempid參數(shù),方便指定不同模板
注意事項
這個頁面不支持正文分頁,如需分頁還需要另行修改。
不能使用系統(tǒng)自帶的緩存功能,否則會跟自帶動態(tài)頁面混淆。
]]>