今天给各位分享帝国cms插件即时保存的知识,其中也会对帝国cms定时发布进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
本文目录一览:
- 1、如何实现自动备份呢 帝国cms
- 2、帝国CMS采集功能不能直接保存其他格式附件吗?
- 3、帝国cms 批量定时审核 代码 或者插件 我知道帝国cms 可以设置任务自动刷新首页和栏目
如何实现自动备份呢 帝国cms
这个倒是挺简单的 最重要的及时备份数据库 所以网站只需要隔天备份数据库就行了 这个有个别主机管理面板带有备份功能 另外自己写个自动备份脚本不是很简单吗
帝国CMS采集功能不能直接保存其他格式附件吗?
文字 图片 flash应该都是可以保存下来的,但是那种直接是附件的是不能采集出来的,需要自己下载然后制作链接,采集不是所有都能采集出来的。
帝国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;
?
帝国cms插件即时保存的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于帝国cms定时发布、帝国cms插件即时保存的信息别忘了在本站进行查找喔。