1 頁 (共 1 頁)

設定版主不能檢視IP

發表於 : 2008-01-11 16:33
krab
不希望版主或全域版主檢視會員的IP,除了設定不可以檢視文章細節之後,還必須把版主控制台裡面的版主記錄等等拿掉,不然一樣可以看得到IP。
以下是搜尋官方論壇之後找到的一個方法,在自己論壇操作之後可行,特別提出來分享。

http://www.phpbb.com/community/posting. ... &p=3299089
Highway of Life 寫:
ChrisRLG 寫:But that group sees the link for [Moderator Control Panel] and can add usernotes and see all the mod logs etc etc - including IP codes.

Is there anyway (without a software modification) that I can give JUST edit to a single room to a user or a group.
The simplest *hack* to your request would be to run this:

代碼: 選擇全部

UPDATE phpbb_modules SET module_auth = 'acl_m_warn' WHERE module_basename = 'notes';
UPDATE phpbb_modules SET module_auth = 'acl_m_warn' WHERE module_basename = 'logs';
UPDATE phpbb_modules SET module_auth = 'aclf_m_report' WHERE module_basename = 'main' AND module_mode = 'forum_view';
effectively assigning the notes and logs to moderators with “can warn users” permissions, and the “forum moderation” to those with the ability to view reports. -- they can still see topic and post moderation, but the only action they can perform is editing.
I know this only covers a small aspect of what you are asking, but hopefully it is a good solution for you in the short term until something can be developed for what you need.
As always, you can change (or ask us) the moderator permission type to something other than warn/reports.