Manual:BlockUsers.php

MediaWiki version:
1.35
Category:MediaWiki code#BlockUsers.php

Details

blockUsers.php file is a maintenance script to block or unblock a batch of users.

By default, all users are hard blocked, auto blocked from any current and subsequent IP addresses, email disabled, unable to write to their user page and unable to create further accounts with no expiry to this block. You can change these configuration through options.

Options/Arguments

Option/Argument Description Required?
<file> A file where each line contains the name of a user to be blocked. If not given, script reads from standard inputOptional
--performer Username that will be shown in the log entries (does not need to be in the sysop group)Optional
--reason Reason for blocks. If empty, no reason will be shown in the logsOptional
--reblock Reblock users who are already blockedOptional
--expiry Expiry of the block (can be something like "1 week" or a timestamp)Optional
--unblock If this option is passed, script will unblock the users insteadOptional
--allow-createaccount Allow account creation for blocked IPsOptional
--allow-email Allow blocked accounts to send emailsOptional
--allow-talkedit The block user will be able to edit their own talk pageOptional
--disable-hardblock Don't block logged in accounts from a blocked IP addressOptional
--disable-autoblock Don't autoblock IP addresses used by the accountsOptional

Usage

php maintenance/run.php blockUsers [ <file>| --performer| --reason| --reblock| --expiry| --unblock| --allow-createaccount| --allow-email| --allow-talkedit| --disable-hardblock| --disable-autoblock ]
In MediaWiki version 1.39.12 and earlier, you must invoke maintenance scripts using php maintenance/scriptName.php instead of php maintenance/run.php scriptName.
Terminal

(This will block the users contained in the text file "userlist.txt")

If the filename is omitted, the script will expect a list of users on the standard input.

See also

Category:Maintenance scripts#ChangePassword.php Category:User maintenance scripts
Category:Maintenance scripts Category:MediaWiki code Category:User maintenance scripts