国产成人AA午夜视频,亚洲v日韩v精品v无码专区,亚洲精品无码永久中文字幕,黄色网站久久久免费观看,91精品国产91久久久久久最新,精品国产91在线网址,日韩噜噜噜在线视频,日韩无码一区蜜桃 http://www.vanhostingweb.com 分享技術(shù),共同進步 Fri, 18 Feb 2022 02:59:28 +0000 zh-Hans hourly 1 帝國CMS新聞模型轉(zhuǎn)成文章模型的方法 http://www.vanhostingweb.com/5052.html Wed, 09 Feb 2022 03:31:58 +0000 http://www.vanhostingweb.com/?p=5052 帝國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('確認要執(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)搜索。

 

]]>
帝國CMS列表頁如何調(diào)用文章tag http://www.vanhostingweb.com/5044.html Mon, 31 Jan 2022 04:44:20 +0000 http://www.vanhostingweb.com/?p=5044 帝國CMS列表頁如何調(diào)用文章tag?列表頁調(diào)用tag的方法有兩種,一種是切割副表的infotags字段,第二種種是從phome_enewstagsdata表中提取。如果采用tagid或tag靜態(tài)化,則推薦使用第二種方法,效率更高。如果采用tagname的動態(tài)鏈接方式,可以采用第一種方法。

第一種方法:切割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) ,必須開啟使用程序代碼。

]]>
帝國CMS如何實現(xiàn)tagid偽靜態(tài)TAG的方法 http://www.vanhostingweb.com/5042.html Sun, 30 Jan 2022 04:51:48 +0000 http://www.vanhostingweb.com/?p=5042 帝國CMS默認的tag偽靜態(tài)方法是tagname方式的,那么怎么實現(xiàn)以tagid來實現(xiàn)tag的偽靜態(tài)呢?用下面方法即可實現(xiàn)!

第一步:

修改 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)文章 http://www.vanhostingweb.com/5040.html Sat, 29 Jan 2022 11:36:57 +0000 http://www.vanhostingweb.com/?p=5040 用tag調(diào)用相關(guān)文章的方法在帝國官方論壇上有人發(fā)過方法,但所使用的函數(shù)效率太低而且無法制定參數(shù),不好用。下面介紹的方法就是利用tag調(diào)用相關(guān)文章,非常好用。

帝國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)?>

 

 

]]>
帝國CMS如何實現(xiàn)鍵盤翻頁 http://www.vanhostingweb.com/5034.html Tue, 25 Jan 2022 04:25:45 +0000 http://www.vanhostingweb.com/?p=5034 帝國CMS如何實現(xiàn)鍵盤翻頁?

最終想要的效果是:

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>

完成!

]]>
帝國CMS如何批量修改信息標題 http://www.vanhostingweb.com/5032.html Mon, 24 Jan 2022 04:24:56 +0000 http://www.vanhostingweb.com/?p=5032 作為網(wǎng)站編輯,經(jīng)常需要修改文章標題,如何快速修改呢?批量修改信息標題就是不錯的主意。下面就來介紹實現(xiàn)批量修改信息標題方法。

以下修改方法可以同時用于 e/data/html/list/alllistinfo.php文件 和 e/data/html/list/listinfo.php文件,或者自定義的系統(tǒng)模型列表文件。

第一步 查找?$ignamer=$ftnr['igr'];? 在其下一行插入如下代碼

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]?>? 找到后如下操作

將<?=$r[title]?>?和上下一行的 <a >和</a>刪除(一共刪除3行),換成代碼:

<input type="text" name="title[]" value="<?=$oldtitle?>" style="width:99%">

第三步 查找 <span id="moveclassnav"></span>

在其上插入一行,輸入代碼:

<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、批量修改會員信息

79c8969a979d2865a0daab22c7cba8f4

2、批量修改tag屬性

29edd7f9987ebc246c8ad6fb9cef64da

3、批量修改信息標題、文件名

f223b13b0e88959854a5c70dd93bccad

]]>
帝國CMS下載遠程圖片做標題圖片 http://www.vanhostingweb.com/5021.html Sat, 22 Jan 2022 02:13:43 +0000 http://www.vanhostingweb.com/?p=5021 用火車頭采集信息的站長,如果想采集標題圖片可能會遇到一個麻煩:要先下載到本地再上傳到服務(wù)器。本文介紹一種方法,可以直接將遠程圖片網(wǎng)址用于標題圖片。

第一步:添加字段處理函數(shù)

將以下函數(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'];
}

 

第二步:修改 titlepic 字段

在“后臺增加信息處理函數(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">

效果預(yù)覽

cb20e6114fcd8a4ceddeda4a2f916aa7

]]>
帝國CMS 添加自定義標簽,獲取當(dāng)前頁鏈接方法 http://www.vanhostingweb.com/5015.html Wed, 19 Jan 2022 02:07:21 +0000 http://www.vanhostingweb.com/?p=5015 帝國CMS 添加自定義標簽,獲取當(dāng)前頁鏈接方法

有時需要獲取帝國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);

 

下圖為第一步第一處修改示例

241215631be329561f2b5576054ae41b

下圖為第一步第二處修改示例

d6f51544b754e3fdc98ecffb95bd7519

如圖所示,紅框內(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)是第一處插入的代碼,下方紅框是第二處插入的代碼。

2182fad24acc840bbd2672be82cf07b5

]]>
帝國CMS副頁面如何實現(xiàn)一篇文章多個動態(tài)內(nèi)容頁 http://www.vanhostingweb.com/5005.html Sun, 16 Jan 2022 03:21:50 +0000 http://www.vanhostingweb.com/?p=5005 信息頁:調(diào)用一個模板,展示一條帝國cms的信息;副頁面:調(diào)用另外一個模板,展示同一條帝國cms的信息。

第一步:復(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)頁面混淆。

]]>
亚洲中文色欧另类欧美,久久久久久久激情,亚洲 日韩 欧美 另类 国产,中文字幕高清无码男人的天堂 www.sucaiwu.net