Extension:AnonPrivacy
AnonPrivacy リリースの状態: 安定 |
|
---|---|
実装 | ユーザー インターフェイス |
説明 | Hides the IPs of anonymous users to everyone but admins. |
作者 | Sophivorusトーク |
最新バージョン | 1.1 (2020-03-15) |
MediaWiki | 1.35+ |
ライセンス | GNU 一般公衆利用許諾書 3.0 |
ダウンロード | |
|
|
四半期ごとのダウンロード数 | 11 (Ranked 120th) |
translatewiki.net で翻訳を利用できる場合は、AnonPrivacy 拡張機能の翻訳にご協力ください | |
The AnonPrivacy extension hides the IPs of anonymous users to everyone but admins, in the recent changes, related changes, watchlists, page histories, etc. IPs can still be found via the API.
If an anonymous user moves a page, their IP address will be shown even with anonprivacy
turned on.
インストール
- ダウンロードして、ファイルを
extensions/
フォルダー内のAnonPrivacy
という名前のディレクトリ内に配置します。
開発者とコード寄稿者は、上記の代わりに以下を使用してGitからインストールします:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AnonPrivacy - 以下のコードを LocalSettings.php ファイルの末尾に追加します:
wfLoadExtension( 'AnonPrivacy' );
- 完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。
設定
The extension introduces an extra user right called "anonprivacy". Any user with this right is able to see the IPs, while any user without it is not able to see them.
Admins are given the right by default.
To give the right to any other user groups, add the following to your LocalSettings.php
:
$wgGroupPermissions['groupname'] = 'anonprivacy';
IPs can still be seen through the API via for example api.php?action=feedrecentchanges
.
Syndication feeds can be disabled by adding the following to the bottom of your LocalSettings.php
:
$wgFeed = false;
However, IPs will still visible through other API methods.
Solving this issue should be a priority for future development.
In the meantime, a workaround is to disable the API entirely by adding the following to the bottom of your LocalSettings.php
:
$wgEnableAPI = false;
Please notice that this feature is deprecated and will be removed in MediaWiki 1.32.
関連項目
- Manual:Preventing access - To prevent anonymous edits
- IP Editing: Privacy Enhancement and Abuse Mitigation on Meta