修改步驟:
海林ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)建站的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!
1、以下代碼加入到admin/ecmsinfo.php,在任意2個(gè)elseif中間插入就行
elseif($enews=="AddTags_all")//列表批量添加Tags
{
$classid=$_POST['classid'];
$id=$_POST['id'];
$tags=$_POST['add_listtags'];
$newstime=time();
eInsertTags2($tags,$classid,$id,$newstime);
}
2、將以下代碼加入到class/uesrfun.php
//加入TAG表
function eInsertTags2($tags,$classid,$id,$newstime){
global $empire,$dbtbpre,$class_r;
if(!trim($tags))
{
printerror("TAGS信息不能為空", "", 1, 0, 1);
return '';
}
$count = count($id); //統(tǒng)計(jì)ID數(shù)量
$tags = RepPostVar($tags);
$tag = explode(",", $tags);
if (emptyempty($count))
{
printerror("未選擇信息ID", "", 1, 0, 1);
}
if (count($tag)1)
{
printerror("只能添加一個(gè)TAGS詞", "", 1, 0, 1);
}
$classid=(int)$classid;
$id[$i] = (int)$id[$i];
$mid=(int)$class_r[$classid][modid];
for($i=0;$i$count;$i++)
{
$tbname=$class_r[$classid][tbname];//獲取表名
$r=$empire-fetch1("select tagid from {$dbtbpre}enewstags where tagname='$tags' limit 1");
$t = $empire-fetch1("select infotags from {$dbtbpre}ecms_".$tbname." where id='$id[$i]'");
$taga=$t['infotags'].",".$tags; //組合TAGS
$tagb[$i] = explode(",",$taga); //設(shè)置數(shù)組
$tagc=array_values(array_unique($tagb[$i])); //數(shù)組排重
for($t=0;$tcount($tagc);$t++)
{//二級子循環(huán)TAGS數(shù)組輸出
$newtags[$i].= ",".$tagc[$t];
}
if($r[tagid])
{
$datar=$empire-fetch1("select tagid,classid,newstime from {$dbtbpre}enewstagsdata where tagid='$r[tagid]' and id='$id[$i]' and mid='$mid' limit 1");
if($datar[tagid])
{
if($datar[classid]!=$classid||$datar[newstime]!=$newstime)
{
$empire-query("update {$dbtbpre}enewstagsdata set classid='$classid',newstime='$newstime' where tagid='$r[tagid]' and id='$id[$i]' and mid='$mid' limit 1");
}
}
else
{
$empire-query("update {$dbtbpre}enewstags set num=num+1 where tagid='$r[tagid]'");
$empire-query("update {$dbtbpre}ecms_".$tbname." set infotags='".trim($newtags[$i],",")."' where id='$id[$i]'");
$empire-query("insert into {$dbtbpre}enewstagsdata(tagid,classid,id,newstime,mid) values('$r[tagid]','$classid','$id[$i]','$newstime','$mid');");
}
}
else
{
$empire-query("update {$dbtbpre}ecms_".$tbname." set infotags='".trim($newtags[$i],",")."' where id='$id[$i]'");
$empire-query("insert into {$dbtbpre}enewstags(tagname,num,isgood,cid) values('$tags',1,0,0);");
$tagid=$empire-lastid();
$empire-query("insert into {$dbtbpre}enewstagsdata(tagid,classid,id,newstime,mid) values('$tagid','$classid','$id[$i]','$newstime','$mid');");
}
}
printerror("批量添加TAGS成功", "", 1, 0, 1);
}
3、信息管理列表模板最后一列修改成以下代碼,在e/data/html/list/文件夾內(nèi)
td height="25" colspan="8"
table width="100%" border="0" cellpadding="0" cellspacing="0"
tr
td width="68%" height="25"
font color="#666666"備注:多選框藍(lán)色為未審核信息;發(fā)布者紅色為會(huì)員投稿;信息ID粗體為未生成,點(diǎn)擊ID可刷新頁面./font
/td
td width="32%" input type="text" name="add_listtags" id="add_listtags" size="50" value="" /
input type="submit" name="Submit100" value="添加TAGS" onClick="document.listform.enews.value='AddTags_all';document.listform.action='ecmsinfo.php';"
/td
/tr
/table
/td
進(jìn)入數(shù)據(jù)庫后,找到你存放數(shù)據(jù)的那個(gè)表,因?yàn)橐坏┬薷牡臅r(shí)候出現(xiàn)錯(cuò)誤的話,你又不知道改回來后果是很嚴(yán)重的,建議大家先備份這個(gè)表的數(shù)據(jù),我來里以表‘phome_ecms_news’為例,因?yàn)槲业臄?shù)據(jù)還沒入庫所以真實(shí)要修改的數(shù)據(jù)是‘phome_ecms_infotmp_news’,一定要找對表哦,別亂改。下圖是我所找到的臨時(shí)數(shù)據(jù)對應(yīng)的表的部分截圖。
核對好數(shù)據(jù)后只要寫sql語修改表里的對應(yīng)字段的內(nèi)容信息就可以了,比如我要修改‘newstime’發(fā)布時(shí)間字段,把有含有‘2014-03-15’改成‘2012-03-15’只要寫這樣的sql語句
update phome_ecms_infotmp_news set newstime=replace(newstime,'2014-03-12','2012-03-12')
WHERE newstime like '%2014-03-12%' ,點(diǎn)擊SQL,再點(diǎn)擊UPDATE如下圖
把剛剛寫的好sql語句放在上圖中 2 所示的輸入框里,原來有的語句要?jiǎng)h除哦 ,如下圖,再點(diǎn)擊下圖中的‘執(zhí)行’按鈕
出現(xiàn)下圖后點(diǎn)擊圖中我用紅框標(biāo)出的地方 ‘創(chuàng)建 PHP 代碼’
點(diǎn)擊 ‘創(chuàng)建 PHP 代碼’ 后出現(xiàn)下圖了,再點(diǎn)擊下圖中的 ‘執(zhí)行’按鈕,要往下面拉一點(diǎn)哦,不然可以看不到這個(gè) 按鈕
6
現(xiàn)在再看看這個(gè)數(shù)據(jù)表里的 時(shí)間字段 里的內(nèi)容,是不是改了,如果你想改標(biāo)題,只要把上面的sql語句表名,和字段名改對就行了。
一、批量導(dǎo)入欄目:
insert into phome_enewsclass (classid,bclassid,classname,myorder,classpath,intro,classpagekey) select id,reid,typename,sortrank,typedir,description,keywords from dede_arctype
二、導(dǎo)入文章
insert into phome_ecms_news (id,classid,truetime,onclick,title,titlepic,filename,newstime,lastdotime,smalltext,keyboard) select id,typeid,sortrank,click,title,litpic,filename,pubdate,senddate,description,keywords from dede_archives
三、導(dǎo)入文章來源作者
update `dede_archives` da,phome_ecms_news_data_1 men set da.source=men.befrom,da.writer=men.writer where da.id=men.id
四、導(dǎo)入文章body(內(nèi)容)
insert into phome_ecms_news_data_1 (id,classid,newstext) select aid,typeid,body from dede_addonarticle men
如果你DEDE數(shù)據(jù)表中開頭為其他的,代碼中的dede_也要換成你dede數(shù)據(jù)庫中的開頭。
有解決方法的,對于這種批量導(dǎo)入、重復(fù)性操作等,我們現(xiàn)在都是用一款叫“極速點(diǎn)擊虎”的軟件來完成。因?yàn)闃O速點(diǎn)擊虎這款軟件不需過多復(fù)雜的設(shè)置,就可自動(dòng)導(dǎo)入填寫,自動(dòng)錄入和自動(dòng)點(diǎn)擊操作。
其實(shí)這么說吧,只要是一些重復(fù)的來回的手工操作,都可以由“極速點(diǎn)擊虎”軟件編排替代!實(shí)現(xiàn)辦公自動(dòng)化輔助,批量自動(dòng)運(yùn)行的!