Difference between revisions of "Mediawiki Extension RenameUser"

From Micylou WIKI
Jump to navigation Jump to search
m (Added infobox and semantic variables)
m (Text replacement - "Template-uk:Class-Infobox-Software" to "Template:Class-Infobox-Software")
Line 1: Line 1:
 
'''<span style="color:white; background:white">[[PageName::{{PAGENAME}}|]]</span>'''
 
'''<span style="color:white; background:white">[[PageName::{{PAGENAME}}|]]</span>'''
 
<!-- Template Infobox Software -->
 
<!-- Template Infobox Software -->
{{Template-uk:Class-Infobox-Software
+
{{Template:Class-Infobox-Software
 
|image = <!-- If an logo is required, enter the link here -->
 
|image = <!-- If an logo is required, enter the link here -->
 
|Section = [[Section::{{PAGENAME}}]]
 
|Section = [[Section::{{PAGENAME}}]]

Revision as of 13:31, 25 February 2021

Mediawiki Extension RenameUser
Section: Mediawiki Extension RenameUser
Source: DataSource
Language: English
Subject: Mediawiki
Document Type : Extension
Last Edit By: DochyJP
LastEdit: 2021-02-25
Document Status: Active

Description

The Renameuser extension provides a special page which allows authorized users to rename user accounts. This will cause page histories, etc. to be updated. If you want to rename an account "into" another, already existing one, you need the User Merge and Delete extension.

Installation

Download

Download and place the file(s) in a directory called Renameuser in your extensions/ folder.

Activation

Add the following code at the bottom of your LocalSettings.php:

wfLoadExtension( 'Renameuser' );

Configuration

It is good practice to allow sysop to use it and not only the embers of the Burocrat group.

$wgGroupPermissions['sysop']['renameuser'] = true;

Usage

As a bureaucrat, access the Special:Renameuser page.
Enter the name of the user to be renamed, and the desired new name, toggle the options to move user/talk pages and their subpages and to create redirects as desired, and click OK.
The user will be renamed, and (if the appropriate option was checked) the user page, user talk page and all their subpages will be moved as well.
The ability of this extension to move user subpages does not depend on 'move-subpages' userright. The number of subpages moved is not limited by the $wgMaximumMovedPages parameter. The extension will also move all css, js and move-protected pages.
You can grant other groups the right to rename users, for example:

$wgGroupPermissions['sysop']['renameuser'] = true;

See also

User Merge and Delete extension



Back to top of page - Back to Welcome Page