Extension:UserThrottle
この拡張機能は、MediaWiki 1.33 以降のあらゆるバージョンのリリースと互換性がありません。 本番環境のサイトではこの拡張機能を使用しないよう勧告します。 Volunteer developers are invited to pledge their efforts to updating this extension to make it compatible with MediaWiki 1.39 by replacing the {{Incompatible }} template with {{Incompatible |version=1.33|pledge=~~~~}} . |
現在、この拡張機能は積極的な保守が行われていません! それでも機能する可能性はありますが、バグ報告や機能の要望は無視される可能性が高くなります。 この拡張機能の開発や保守の作業を引き受けることに興味がある場合は、リポジトリの所有権を申請できます。 礼儀として、作者に問い合わせることをお勧めします。 保守を引き継いだ場合、このテンプレートは除去すべきです。また、拡張機能ページの {{extension}} 基礎情報ボックス内のリストにあなたの名前を保守担当者として追加してください。 |
![]() リリースの状態: 保守されていない |
|
---|---|
実装 | access (invalid type) |
説明 | Throttle on user account registrations |
作者 | Brion Vibber (Brion VIBBERトーク) |
MediaWiki | |
ライセンス | GNU 一般公衆利用許諾書 2.0 以降 |
ダウンロード | |
Quarterly downloads | 0 |
translatewiki.net で翻訳を利用できる場合は、UserThrottle 拡張機能の翻訳にご協力ください | |
What this extension does
Monitors global frequency of user account registrations and throttles apparent flood attacks, regardless of origin. Not always suitable for use on large public sites, but it's been used during occasional particular vandal attacks on Wikimedia in the past.
インストール
To install this extension, add the following to LocalSettings.php :
require_once("$IP/extensions/UserThrottle/UserThrottle.php");
設定
You can adjust the throttle settings in $wgGlobalAccountCreationThrottle:
$wgGlobalAccountCreationThrottle = array(
'min_interval' => 5, // Hard minimum time between creations
'soft_time' => 300, // Timeout for rolling count
'soft_limit' => 10, // 5分あたり10回の登録
);
If you legitimately have signup floods, you may wish to adjust these.