导航:首页 > 万维百科 > 帝国cms批量推送

帝国cms批量推送

发布时间:2021-03-27 20:52:16

1、帝国cms 批量定时审核 代码 或者插件 我知道帝国cms 可以设置任务自动刷新首页和栏目

在首页模板中加入下面代码,尽量放在底部。
<script language="javascript" type="text/javascript" src="/e/htmlindex/index_html.php"></script>

在 /e/ 建立文件夹 htmlindex 并设置 777权限

将下面代码保存在 /e/htmlindex/index_html.php

修改刷新时间,将文件中1200改为你想要的时间,单位为秒。

<?php
require("../class/connect.php");
include("../class/db_sql.php");
include("../class/config.php");
include("../class/functions.php");
include("../class/t_functions.php");
require LoadLang("pub/fun.php");
require("../data/dbcache/class.php");
require("../data/dbcache/MemberLevel.php");
include("../class/chtmlfun.php"); 
$link=db_connect();
$empire=new mysqlquery();
$filepath_s="indexhtmlhc.txt";
$time=time();
@$filemtime=(int)filemtime($filepath_s)+1200;
/*
函数解释
file_exists() 函数检查文件或目录是否存在。
mkdir() 函数创建目录。
time() 函数返回当前时间的 Unix 时间戳。
filemtime() 函数返回文件内容上次的修改时间。
*/
if (!file_exists($filepath_s)){
fopen($filepath_s, 'w');
@chmod($filepath_s, 0777);
ReIndex();
}elseif(!file_exists($filepath_s) || (filemtime($filepath_s)+1200)<time()){
fopen($filepath_s, 'w');
@chmod($filepath_s, 0777);
ReIndex();
}else{
// do nothing
}
db_close();
$empire=null;
?>

2、帝国CMS 批量添加多条新闻数据,求解决方法,或者有效思路!

?

3、在帝国cms中,怎么批量导入内容关键词,如图示

有解决方法的,对于这种批量导入、重复性操作等,我们现在都是用一款叫“极速点专击虎”的软件来完属成。因为极速点击虎这款软件不需过多复杂的设置,就可自动导入填写,自动录入和自动点击操作。
其实这么说吧,只要是一些重复的来回的手工操作,都可以由“极速点击虎”软件编排替代!实现办公自动化辅助,批量自动运行的!

4、帝国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($tag)>1)
{
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;$t<count($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>

5、帝国cms 如何批量替换 专题 内容?因为专题里面有部分内容需要修改 需要批量修改 如何解决?

这个有一个变通的方法:就是到数据库管理里,找到文章存储的那张表,将表导出为文件,具体看你的个人喜好了,我一般导出为csv文件,然后使用文本编辑器编辑这个文件就行,这时你使用查找替换的方法就很简单了。如果文件打开是乱码,则需要改变文件的编码。改完以后保存,记得还要改回原来的文件编码,再到数据库里,找那张表,将表内容清空,然后导入这个文件,导入时的识别参数要设置好。

6、帝国cms怎么将文章主动推送给百度

参考百度站长平台。
有好几种途径
1)主动提交
2)主动推送
3)站点地图
4)手动提交

最智能的就是主动提交,站长工具后台有对应的api使用说明。需要结合定时任务进行。大致就是你网站上的新闻,会自动告诉百度。
更进一步的工作就是,你网站上发表文章的保存过程,你修改下程序。直接结合上推送的api,这样你后台发表完的每一篇文章,在他生成地址的一瞬间,就主动告诉百度了。

主动推送,这个是js实现的,也在百度站长平台有对应的js代码。参考百度站长工具的使用说明,安装到网站就好了。
这个功能,他的原理是这样的,你发表的新闻,只要有人打开。就会主动百度一下,我这里有一个网页,你可以来看看啊。

站点地图,这个是一个比较慢的途径。但是也是一种解决思路。需要配合一定的定时任务,自动更新站点地图,也成为sitemap。

手动提交,这个相信都知道了,就是你拿到网址,一条条给百度输入进去,让蜘蛛来爬取。
这个手动提交,在站长平台后台也可以批量提取。

抛开以上的问题,再有利于网站收录的方法,就是优化站内的链接关系、调整关键词布局、重点页面的权重几种等很多细节的工作。
有其他问题可以随时交流。

7、如何在帝国cms后台批量修改文章内容里面的关键字的超链接

这个有一个变通的方法:就是到数据库管理里,找到文章存储的那张表,将表导出为文件,具体看你的个人喜好了,我一般导出为csv文件,然后使用文本编辑器编辑这个文件就行,这时你使用查找替换的方法就很简单了。如果文件打开是乱码,则需要改变文件的编码。改完以后保存,记得还要改回原来的文件编码,再到数据库里,找那张表,将表内容清空,然后导入这个文件,导入时的识别参数要设置好。

与帝国cms批量推送相关的知识