Extension:ThrottleOverride

Category:Extensions without an imageCategory:Extensions without a compatibility policyCategory:GPL licensed extensions
MediaWiki extensions manual
ThrottleOverride
Release status: betaCategory:Beta status extensions
Implementation User rights Category:User rights extensions, Special page Category:Special page extensions
Description Allows administrative overriding of IP-address throttles (editing, page moves, account creation, etc.)
Author(s) Tyler Romeo (Parent5446talk)
Latest version 0.6.0 (2016-10-05)
MediaWiki 1.25+Category:Extensions with manual MediaWiki version
PHP 5.3+
Database changes Yes
License GNU General Public License 3.0 or later
Download Category:Extensions in Wikimedia version control
  • $wgThrottleOverrideTypes
  • $wgThrottleOverrideCentralWiki
  • $wgThrottleOverrideCIDRLimit
Quarterly downloads 1 (Ranked 94th)
Translate the ThrottleOverride extension if it is available at translatewiki.net
Issues Open tasks · Report a bug
Category:All extensions

The ThrottleOverride extensions provides an interface for overriding certain rate limits in MediaWiki for temporary or indefinite amounts of time. Throttle exemptions are applied to IP addresses or IP address ranges, and can affect the page edit, page move, account creation, password recovery, and user email throttles. This is useful if a wiki administrator is expecting and authorizes a large number of edits, account creations, etc. from a single IP address.

Download

The extension can be retrieved directly from Git [?]:

  • Browse code
  • Some extensions have tags for stable releases.
  • Each branch is associated with a past MediaWiki release. There is also a "master" branch containing the latest alpha version (might require an alpha version of MediaWiki).

Extract the snapshot and place it in the extensions/ThrottleOverride/ directory of your MediaWiki installation.

If you are familiar with Git and have shell access to your server, you can also obtain the extension as follows:

cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ThrottleOverride.git

Installation

  • Download and move the extracted ThrottleOverride folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ThrottleOverride
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'ThrottleOverride' );
    // Who can use Special:OverrideThrottle ?
    // If you want that sysops can use it:
    $wgGroupPermissions['sysop']['throttleoverride'] = true;
    
  • Run the update script which will automatically create the necessary database tables that this extension needs.
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Usage

The user-facing part of the extension are the special pages Special:OverrideThrottle and Special:ThrottleOverrideList. On the former, throttles can be overridden and existing throttles can be changed. On the latter, a list of all throttle exemptions that are currently active is shown.

Category:All extensions Category:Beta status extensions Category:ExemptFromAccountCreationThrottle extensions Category:Extensions in Wikimedia version control Category:Extensions which add rights Category:Extensions with manual MediaWiki version Category:Extensions without a compatibility policy Category:Extensions without an image Category:GPL licensed extensions Category:LoadExtensionSchemaUpdates extensions Category:PingLimiter extensions Category:SetupAfterCache extensions Category:SpecialPage initList extensions Category:Special page extensions Category:User rights extensions