Extension:Nuke: Difference between revisions
Undo revision 2122148 by 188.32.110.111 (talk) ¿why? |
|||
| Line 37: | Line 37: | ||
== Configuration == |
== Configuration == |
||
The user right "nuke" is automatically granted to the "sysop" user group. To decouple this and assign this right to a dedicated new user group such as " |
The user right "nuke" is automatically granted to the "sysop" user group. To decouple this and assign this right to a dedicated new user group such as "nuker" add the following to your "LocalSettings.php" file: |
||
<syntaxhighlight lang="php"> |
<syntaxhighlight lang="php"> |
||
$wgGroupPermissions['sysop']['nuke'] = false; |
$wgGroupPermissions['sysop']['nuke'] = false; |
||
$wgGroupPermissions[' |
$wgGroupPermissions['nuker']['nuke'] = true; |
||
</syntaxhighlight> |
</syntaxhighlight> |
||
Revision as of 02:26, 8 May 2016
Note: This extension is bundled with MediaWiki 1.18 and above. Thus you do not have to download it again.
Release status: stable |
|
|---|---|
| Implementation | Special page, Page action |
| Description | Gives sysops the ability to mass delete pages. |
| Author(s) | Brion Vibber, Jeroen De Dauw |
| Latest version | 1.2.0 (2014-03-27) |
| MediaWiki | 1.19+ (v1.1.6+) |
| Database changes | No |
|
|
|
nuke |
|
| Licence | GNU General Public License 2.0 or later |
| Download | |
| Help | Help:Extension:Nuke |
| Translate the Nuke extension if it is available at translatewiki.net | |
| Issues | Open tasks · Report a bug |
The Nuke extension makes it possible for sysops to mass delete pages.
Installation
- Download and move the extracted
Nukefolder to yourextensions/directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
- Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'Nuke' );
- Configure as required.
Done – Navigate to Special:Versionon your wiki to verify that the extension is successfully installed.
Configuration
The user right "nuke" is automatically granted to the "sysop" user group. To decouple this and assign this right to a dedicated new user group such as "nuker" add the following to your "LocalSettings.php" file:
$wgGroupPermissions['sysop']['nuke'] = false;
$wgGroupPermissions['nuker']['nuke'] = true;
Usage
Go to Special:Nuke in order to mass delete pages recently added by a user or IP address. The special page is listed under Special:SpecialPages as Mass delete.
You can also specify a pattern for the page title: the field accepts SQL wildcards, like %lol%.
A log of all deletions is maintained at Special:Log/delete.
See also
- Extension:DeleteBatch and the deleteBatch.php maintenance script - Delete multiple pages using a text file containing the names
- Extension:NukeDPL - Delete multiple pages using 'Dynamic Page Lists'
- Extension:SmiteSpam - Attempts to find all spam on a wiki, via text processing, and provides an interface to delete it all
- Manual:DeleteArchivedRevisions.php - Script to permanently blow away pages after deleting them (e.g. after using Extension:Nuke)
- Extension:DeletePagePermanently - Adds a tab for deleting an individual page permanently.
| This extension is being used on one or more Wikimedia projects. This probably means that the extension is stable and works well enough to be used by such high-traffic websites. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the extensions installed on a particular wiki can be seen on the wiki's Special:Version page. |
[[Category:Page deletion extensionsTemplate:Translation]]
