导航:首页 > 万维百科 > 帝国cms插件

帝国cms插件

发布时间:2020-08-09 20:28:46

1、帝国cms 怎么设置网站地图?有插件吗 ?怎么使用呢

官方有教程,

2、帝国cms tipask插件怎么用

要下载2个文件包
1、tipask问答系统
2、帝国系统中的 帝国万能会员接口

帝国官方论坛有相关操作。你可以看一下

3、帝国cms7.2顶踩插件哪里有啊 帝国cms

系统模型增加diggtop顶字段和踩字段diggdown就可以了,不用插件。希望对你有帮助!

4、帝国cms 联动插件

这个很简单啊,有教程的,既然你能找到这个插件,那插件肯定就有教程的

5、帝国cms邀请注册插件,前台已经显示了,后台怎么显示呢?怎么在后台加入邀请码?

1.帝国cms后台
2.插件或者其他管理
3.友情链接管理
4.增加友情链接

6、关于帝国cms有没有定时发布的插件

既然这么多人需要,那我就共享在论坛了帝国CMS-前台定时执行刷新任务插件下载地址 http://seosrx.com/thread-17839-1-1.html

7、帝国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插件相关的知识