導航:首頁 > 萬維百科 > 帝國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插件相關的知識