Extension:UserThrottle
![]() | This extension is incompatible with MediaWiki 1.33 or any later release! You are advised against using this extension on a live site. 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=~~~~}} . |
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
![]() Release status: unmaintained |
|
---|---|
Implementation | access (invalid type) |
Description | Throttle on user account registrations |
Author(s) | Brion Vibber (Brion VIBBERtalk) |
MediaWiki | |
License | GNU General Public License 2.0 or later |
Download | |
Quarterly downloads | 3 (Ranked 175th) |
Translate the UserThrottle extension if it is available at translatewiki.net | |
What this extension does[edit]
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.
Installation[edit]
To install this extension, add the following to LocalSettings.php :
require_once("$IP/extensions/UserThrottle/UserThrottle.php");
Configuration[edit]
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, // 10 registrations in five minutes
);
If you legitimately have signup floods, you may wish to adjust these.