Extension:BlockBatch
Jump to navigation
Jump to search
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. |
BlockBatch Release status: unmaintained |
|
---|---|
![]() |
|
Implementation | Special page |
Description | Allows to block a batch of users |
Author(s) | Nathan Larson (Leucostictetalk) |
Latest version | 1.0.0 (2014-02-06) |
MediaWiki | 1.23+ |
PHP | 5.3+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | GitHub: Note: |
blockbatch |
The BlockBatch extension adds a special page, Special:BlockBatch, where users with the 'blockbatch' right can block multiple users easily.
Installation[edit]
- Download and place the file(s) in a directory called
BlockBatch
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php:
require_once "$IP/extensions/BlockBatch/BlockBatch.php";
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Configuration[edit]
By default, this extension lets only bureaucrats block batches of users. You can change it to, e.g., let sysops block batches of users:
$wgGroupPermissions['bureaucrat']['blockbatch'] = false;
$wgGroupPermissions['sysop']['blockbatch'] = true;
See also[edit]
- Extension:OneColumnAllUsers, a quick way to get a list of users, in the order in which they signed up to the wiki, in a format suitable for copying and pasting into the BlockBatch text area
- Extension:BlockandNuke, a way to block users and nuke all their contributions