- 最後登錄
- 2012-8-5
- 在線時間
- 978 小時
- UID
- 275
- 閱讀權限
- 140
- 精華
- 71
- 帖子
- 3799
- 日誌
- 0
- EXP
- 6040 點
- 金幣
- 4990 個
- 註冊時間
- 2008-3-27
- 帖子
- 3799
- EXP
- 6040 點
- 金幣
- 4990 個
- 好友
- 0
- 註冊時間
- 2008-3-27
|
安裝過程
1.上傳附件包
2.執行wish_install.php
3.修改index.php
查找:
- $newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;
複製代碼
下面加:
-
- //許願池 繁化 BY 常山趙子龍 ([url]http://hkforumdiscuss.com[/url])
- $query = $db->query("SELECT * FROM {$tablepre}wish ORDER BY dateline DESC LIMIT 10");
- $wi=intval($wi);
- $wi=0;
- $wishlist=$awish=array();
- while($wish = $db->fetch_array($query)) {
- $awish['username']=addslashes($wish['username']);
- $awish['wishto'] = addslashes($wish['var1']);
- $awish['message'] = addslashes(trim(str_replace(" ","",$wish['var3'])));
- $awish['wishcoin'] =intval($wish['var4']);
- $wishlist[$wi++] = "<font color=red><b>".$awish['username']."</b></font>".' 花費 '."<b>".$awish['wishcoin']."</b>".' 個許願金幣為 '."<font color=blue><b>".$awish['wishto']."</b></font>".' 許願:'.$awish['message'];
- }
- //許願池 繁化 BY 常山趙子龍 ([url]http://hkforumdiscuss.com[/url])
複製代碼
4. 修改:templates/default/discuz.htm
查找:
- <!--{if empty($gid) && ($whosonlinestatus || $maxbdays)}-->
複製代碼
在上面加:
-
- <!--許願池 繁化 BY 常山趙子龍 ([url]http://hkforumdiscuss.com[/url])-->
- {template wishwhatsnew}
- <!--許願池 繁化 BY 常山趙子龍 ([url]http://hkforumdiscuss.com[/url])-->
複製代碼
5. 最後更新緩存 |
|