- 最後登錄
- 2012-8-5
- 在線時間
- 978 小時
- UID
- 275
- 閱讀權限
- 140
- 精華
- 71
- 帖子
- 3799
- 日誌
- 0
- EXP
- 6040 點
- 金幣
- 4990 個
- 註冊時間
- 2008-3-27
- 帖子
- 3799
- EXP
- 6040 點
- 金幣
- 4990 個
- 好友
- 0
- 註冊時間
- 2008-3-27
|
Name: Shoutbox 2.2 BETA By Natz UTF-8
Designed for Discuz! 6.X/F UTF-8
Designed by Natz or ROA
Borwser support : IE6+
Demo site : http://www.cazdesign.com/forums/index.php
Install
Credits:
ntf (auto check for url)
Prototype (http://www.prototypejs.org/)
044003 (To be Chinese Traditional)
[Install]
1. 上載 Shoutbox 2.2 BETA 的檔案到你的網站
2. 使用 shoutbox_install.php 執行或升級
3. 打開系統設置 -> 導入插件數據 (discuz_plugin_shoutbox.txt)
4. 打開 discuz 模板
- 找:- 加在下方:- <!--{if $discuz_uid}-->{template shoutbox}<!--{/if}-->
複製代碼 5. 打開 index.php
- 找:- $hottagstatus = $tagstatus && $hottags && $_DCACHE['tags'];
複製代碼 - 加在下方:- //shoutbox 2.2 beta by natz
- $query = $db->query("SELECT value FROM {$tablepre}settings WHERE variable='shoutbox'");
- $shout = unserialize($db->result($query, 0));
- $shout['allow'] = sprintf('%03b', $shout['allow']);
- for($i = 1; $i <= 3; $i++) {
- $shout['allow'][$i] = $shout['allow'][3 - $i] ? '1' : '0';
- }
- //shoutbox 2.2 beta by natz
複製代碼 |
|