帝国CMS7.5图集批量,帝国CMS多图上传插件
当前目录列表:
1、帝国CMS怎么批量添加信息的tags 2、帝国CMS首页如何调用图片集的图片 3、在帝国CMS中,怎么批量导入内容关键词,如图示 4、如何批量修改文件名 帝国CMS
帝国CMS怎么批量添加信息的tags
修改步骤:
1、以下代码加入到admin/ecmsinfo.php,在任意2个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; //统计ID数量
$tags = RepPostVar,$tags;
$tag = explode,",", $tags;
if ,emptyempty($count)
{
printerror,"未选择信息ID", "", 1, 0, 1;
}
if ,count($tag1)
{
printerror,"只能添加一个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; //设置数组
$tagc=array_values,array_unique($tagb[$i]); //数组排重
for,$t=0;$tcount($tagc;$t++)
{//二级子循环TAGS数组输出
$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/文件夹内
td height="25" colspan="8"
table width="100%" border="0" cellpadding="0" cellspacing="0"
tr
td width="68%" height="25"
font color="#666666"备注:多选框蓝色为未审核信息;发布者红色为会员投稿;信息ID粗体为未生成,点击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

帝国CMS首页如何调用图片集的图片
#include "stdio.h"
#include "graphics.h"
#include "conio.h"
main,
{
int x=360,y=160,driver=VGA,mode=VGAHI;
int num=20,i;
int top,bottom;
initgraph,driver,mode,"";
top=y-30;
bottom=y-30;
for,i=0;inum;i++
{
ellipse,250,250,0,360,top,bottom;
top-=5;
bottom+=5;
}
getch,;
}
在帝国CMS中,怎么批量导入内容关键词,如图示
有解决方法的,对于这种批量导入、重复性操作等,我们现在都是用一款叫“极速点击虎”的软件来完成。因为极速点击虎这款软件不需过多复杂的设置,就可自动导入填写,自动录入和自动点击操作。
其实这么说吧,只要是一些重复的来回的手工操作,都可以由“极速点击虎”软件编排替代!实现办公自动化辅助,批量自动运行的!
如何批量修改文件名 帝国CMS
默认情况是这么修改的
登录后台,依次找到 栏目 - 其他相关 - 批量替换字段值 ,在 选择替换表 中,找到你所用的表,然后选择 替换字段 为 newstext 原字符中填写你网站中存在的电话,新字符填写你现在的电话,现在选择 替换,把 正则替换 打上对勾 替换一下就OK了,最后重新生成就可以了
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. 建站教程 > 帝国CMS7.5图集批量,帝国CMS多图上传插件


