問題外掛:回覆才能觀看內容+隱藏檔案
使用連結:http://www.bbss.idv.tw
使用版本:(例:phpBB 2.0.6)
網站位置:(例:http://www.bbss.idv.tw)
狀況描述:
請問各位高手,如何隱藏內容及檔案呢(attach_mod),感謝高手們的答覆。
裝過hide mod 及attach_mod,要如何結合呢?
[問題]回覆才能觀看內容+隱藏檔案
版主: 版主管理群
Re: [問題]回覆才能觀看內容+隱藏檔案
如果你指的是隱藏內容無法涵蓋附加檔案 !bbss 寫:問題外掛:回覆才能觀看內容+隱藏檔案
使用連結:http://www.bbss.idv.tw
使用版本:(例:phpBB 2.0.6)
網站位置:(例:http://www.bbss.idv.tw)
狀況描述:
請問各位高手,如何隱藏內容及檔案呢(attach_mod),感謝高手們的答覆。
裝過hide mod 及attach_mod,要如何結合呢?
那就表示你看文章不是很完整的看 ...
因為作者本身有在後面加上包含附加檔案的方法 !!
請打開 viewtopic.php
尋找
代碼: 選擇全部
if (stristr($pay_user,$user_id)) {
$message = $message . '<p>----------<br><font color="#FF0000">' . $lang['Paymoney_Payok'] . '</font><br>' . $pay_see . $lang['Paymoney_paysee'] . $postrow[$i]['pay_gotmoney'] . $lang['Virtual_Money'] . '</p>';
} else { 代碼: 選擇全部
$showatt = 'no'; 代碼: 選擇全部
display_post_attachments($postrow[$i]['post_id'], $postrow[$i]['post_attachment']); 改成
代碼: 選擇全部
if ($showatt <> 'no')
{
display_post_attachments($postrow[$i]['post_id'], $postrow[$i]['post_attachment']);
} 打開 includes\topic_review.php
尋找
代碼: 選擇全部
$message = '<p><font color="#FF0000">' . $lang['Paymoney_Cantrew']. '</font></p>';後面加入
代碼: 選擇全部
$showatt = 'no'; 尋找 (這部分音版本不同也會有差異,就是在裝attach file mod時,topic_review.php最後修改的部分.)
代碼: 選擇全部
display_review_attachments($row['post_id'], $row['post_attachment'], $is_auth); 代碼: 選擇全部
if ($showatt <> 'no')
{
display_review_attachments($row['post_id'], $row['post_attachment'], $is_auth);
} 善用 搜尋 可以解決您 90% 的問題
頭腦清晰,選擇正確。 (╯▔︹▔)╯~╘═╛
頭腦清晰,選擇正確。 (╯▔︹▔)╯~╘═╛


