<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.tfcmud.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Help%3AUser_rights</id>
	<title>Help:User rights - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.tfcmud.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Help%3AUser_rights"/>
	<link rel="alternate" type="text/html" href="https://www.tfcmud.com/wiki/index.php?title=Help:User_rights&amp;action=history"/>
	<updated>2026-04-30T15:57:05Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://www.tfcmud.com/wiki/index.php?title=Help:User_rights&amp;diff=153&amp;oldid=prev</id>
		<title>Tynian: Copy from mediawiki</title>
		<link rel="alternate" type="text/html" href="https://www.tfcmud.com/wiki/index.php?title=Help:User_rights&amp;diff=153&amp;oldid=prev"/>
		<updated>2011-01-09T21:46:21Z</updated>

		<summary type="html">&lt;p&gt;Copy from mediawiki&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''User rights''' are specific access and ability permissions that can be assigned to customizable groups. Groups can then be assigned to (or removed from) users through the [[Special:Userrights]] interface in the wiki software. See [[Help:Assigning permissions]].&lt;br /&gt;
&lt;br /&gt;
Access to this interface is itself governed by the 'userrights' right, so only users in the 'bureaucrat' group can do it (in a default set-up) See [[Manual:User rights management]] for information about managing and the assignment of user groups.&lt;br /&gt;
&lt;br /&gt;
This [[Special:Userrights]] interface was introduced in MediaWiki 1.5; see [[Manual:User rights management]] for earlier methods.&lt;br /&gt;
&lt;br /&gt;
==Changing group permissions==&lt;br /&gt;
A default MediaWiki installation assigns certain rights to default groups (see below). You can change the default rights by editing the {{mediawiki|Manual:$wgGroupPermissions|$wgGroupPermissions array}} in {{mediawiki|LocalSettings.php}} with the syntax&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;$wgGroupPermissions['group']['right'] = true /* or false */;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(Note: by default install wgGroupPermissions may not be present and you will need to add it into the file)&lt;br /&gt;
&lt;br /&gt;
If a member has multiple groups, they get the highest permission of any groups.  All users, including anonymous users, are in the &amp;lt;code&amp;gt;'*'&amp;lt;/code&amp;gt; group; all registered users are in the &amp;lt;code&amp;gt;'user'&amp;lt;/code&amp;gt; group. In addition to the default groups, you can arbitrarily create new groups using the same array.&lt;br /&gt;
&lt;br /&gt;
===Examples===&lt;br /&gt;
This example will disable viewing of all pages not listed in [[Manual:$wgWhitelistRead|$wgWhitelistRead]], then re-enable for registered users only:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$wgGroupPermissions['*']['read']    = false;&lt;br /&gt;
# The following line is not actually necessary, since it's in the defaults. Setting&lt;br /&gt;
# '*' to false doesn't disable rights for groups that have the right separately set&lt;br /&gt;
# to true!&lt;br /&gt;
$wgGroupPermissions['user']['read'] = true;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This example will disable editing of all pages, then re-enable for users with confirmed e-mail addresses only:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
# Disable for everyone.&lt;br /&gt;
$wgGroupPermissions['*']['edit']              = false;&lt;br /&gt;
# Disable for users, too: by default 'user' is allowed to edit, even if '*' is not.&lt;br /&gt;
$wgGroupPermissions['user']['edit']           = false;&lt;br /&gt;
# Make it so users with confirmed e-mail addresses are in the group.&lt;br /&gt;
$wgAutopromote['emailconfirmed'] = APCOND_EMAILCONFIRMED;&lt;br /&gt;
# Hide group from user list. &lt;br /&gt;
$wgImplicitGroups[] = 'emailconfirmed';&lt;br /&gt;
# Finally, set it to true for the desired group.&lt;br /&gt;
$wgGroupPermissions['emailconfirmed']['edit'] = true;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This example will create an arbitrary &amp;quot;ninja&amp;quot; group that can block users and delete pages, and whose edits are hidden by default in the recent changes log:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$wgGroupPermissions['ninja']['bot']    = true;&lt;br /&gt;
$wgGroupPermissions['ninja']['block']  = true;&lt;br /&gt;
$wgGroupPermissions['ninja']['delete'] = true;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this example, you would probably also want to create pages [[MediaWiki:Group-ninja]] (content: &amp;lt;code&amp;gt;ninjas&amp;lt;/code&amp;gt;), [[MediaWiki:Group-ninja-member]] (content: &amp;lt;code&amp;gt;ninja&amp;lt;/code&amp;gt;), and [[MediaWiki:Grouppage-ninja]] (content: &amp;lt;code&amp;gt;Project:Ninjas&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== List of permissions ==&lt;br /&gt;
The following user rights are available in the latest version of MediaWiki. If you are using an older version, look at &amp;quot;[[Special:Version]]&amp;quot; on your wiki and see if your version is covered in the &amp;quot;versions&amp;quot; column.&lt;br /&gt;
{| {{prettytable}}&lt;br /&gt;
|-&lt;br /&gt;
!{{hl2}} | Right&lt;br /&gt;
!{{hl2}} | Description&lt;br /&gt;
!{{hl2}} | Versions&lt;br /&gt;
|-&lt;br /&gt;
|{{hl3}} colspan=&amp;quot;3&amp;quot; | '''Reading'''&lt;br /&gt;
|- &lt;br /&gt;
| valign=&amp;quot;top&amp;quot; | read&lt;br /&gt;
| allows viewing pages (when set to false, override for specific pages with [[Manual:$wgWhitelistRead|$wgWhitelistRead]]).&lt;br /&gt;
----&lt;br /&gt;
{{Warning|Setting this to false will only protect ''pages in the wiki''. Uploaded files will remain readable via direct access by default (e.g., [[Manual:$wgUploadPath|$wgUploadPath]]/imageHashes/image.jpg). Use [[Manual:img_auth.php|img_auth.php]] to restrict image views to only logged-in users.}}&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
|{{hl3}} colspan=&amp;quot;4&amp;quot;| '''Editing'''&lt;br /&gt;
|-&lt;br /&gt;
| edit&lt;br /&gt;
| allows [[help:editing|editing]] unprotected pages.&lt;br /&gt;
| [[rev:9632|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| createpage&lt;br /&gt;
| allows the creation of new pages (requires the ''edit'' right).&lt;br /&gt;
| [[rev:11973|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| createtalk&lt;br /&gt;
| allows the creation of new talk pages (requires the ''edit'' right).&lt;br /&gt;
| [[rev:11973|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| move&lt;br /&gt;
| allows renaming the titles of unprotected pages (requires the ''edit'' right).&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| movefile&lt;br /&gt;
| allows renaming pages in the &amp;quot;File&amp;quot; namespace (requires the ''move'' right and [[Manual:$wgAllowImageMoving|$wgAllowImageMoving]] to be true).&lt;br /&gt;
| [[rev:45276|1.14+]]&lt;br /&gt;
|-&lt;br /&gt;
| move-subpages&lt;br /&gt;
| move subpages along with page (requires the ''move'' right).&lt;br /&gt;
| [[rev:35213|1.13+]]&lt;br /&gt;
|-&lt;br /&gt;
| move-rootuserpages&lt;br /&gt;
| can move root pages in the &amp;quot;User&amp;quot; namespace (requires the ''move'' right).&lt;br /&gt;
| [[rev:41961|1.14+]]&lt;br /&gt;
|-&lt;br /&gt;
| createaccount&lt;br /&gt;
| allows the creation of new user accounts.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| upload&lt;br /&gt;
| allows the creation of new images and files.&lt;br /&gt;
| [[rev:9499|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| reupload&lt;br /&gt;
| allows overwriting existing images and files (requires the ''upload'' right).&lt;br /&gt;
| [[rev:10906|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| reupload-own&lt;br /&gt;
| allows overwriting existing images and files uploaded by oneself (requires the ''upload'' right).&lt;br /&gt;
| [[rev:21943|1.11+]]&lt;br /&gt;
|-&lt;br /&gt;
| reupload-shared&lt;br /&gt;
| allows replacing images and files from a shared repository (if one is set up) with local files (requires the ''upload'' right).&lt;br /&gt;
| [[rev:10906|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| upload_by_url&lt;br /&gt;
| allows uploading by entering the URL of an external image (requires the ''upload'' right).&lt;br /&gt;
| [[rev:16162|1.8+]]&lt;br /&gt;
|-&lt;br /&gt;
| editprotected&lt;br /&gt;
| allows to edit protected pages (without cascading protection).&lt;br /&gt;
| [[rev:32164|1.13+]]&lt;br /&gt;
|-&lt;br /&gt;
|{{hl3}} colspan=&amp;quot;4&amp;quot;| '''Management'''&lt;br /&gt;
|-&lt;br /&gt;
| delete&lt;br /&gt;
| '''1.5–1.11:''' allows the deletion or undeletion of pages.&amp;lt;br /&amp;gt;'''1.12+:''' allows the deletion of pages. For undeletions, there is now the 'undelete' right, see below.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| bigdelete&lt;br /&gt;
| allows deletion of pages with larger than [[Manual:$wgDeleteRevisionsLimit|$wgDeleteRevisionsLimit]] revisions&lt;br /&gt;
| [[rev:29872|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| deletedhistory&lt;br /&gt;
| allows viewing deleted revisions, but not restoring.&lt;br /&gt;
| [[rev:12241|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| undelete&lt;br /&gt;
| allows the undeletion of pages.&lt;br /&gt;
| [[rev:28151|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| browsearchive&lt;br /&gt;
| allows prefix searching for titles of deleted pages through [[Special:Undelete]].&lt;br /&gt;
| [[rev:32456|1.13+]]&lt;br /&gt;
|-&lt;br /&gt;
| mergehistory&lt;br /&gt;
| allows access to [[Special:MergeHistory]], to merge non-overlapping pages.&amp;lt;br /&amp;gt;''Note: currently disabled by default, including on Wikimedia projects.''&lt;br /&gt;
| [[rev:27823|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| protect&lt;br /&gt;
| allows locking a page to prevent edits and moves, and editing or moving locked pages.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| block&lt;br /&gt;
| allows the blocking of IP addresses, CIDR ranges, and registered users. Block options include preventing editing and registering new accounts, and autoblocking other users on the same IP address.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| blockemail&lt;br /&gt;
| allows preventing use of the [[Special:Emailuser]] interface when blocking.&lt;br /&gt;
| [[rev:22827|1.11+]]&lt;br /&gt;
|-&lt;br /&gt;
| hideuser&lt;br /&gt;
| allows hiding the user/IP from the block log, active block list, and user list when blocking. (''not available by default'')&lt;br /&gt;
| [[rev:20446|1.10+]]&lt;br /&gt;
|-&lt;br /&gt;
| userrights&lt;br /&gt;
| allows the use of the user rights interface, which allows the assignment or removal of all* groups to any user.&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;* With [[Manual:$wgAddGroups|$wgAddGroups]] and [[Manual:$wgRemoveGroups|$wgRemoveGroups]] you can set the possibility to add/remove certain groups instead of all.&amp;lt;/small&amp;gt;&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| userrights-interwiki&lt;br /&gt;
| allows changing user rights on other wikis.&lt;br /&gt;
| [[rev:28650|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| rollback&lt;br /&gt;
| allows one-click reversion of edits.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| markbotedits&lt;br /&gt;
| allows rollback to be marked as bot edits (see [[Manual:Administrators#Rollback]]).&lt;br /&gt;
| [[rev:27658|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| patrol&lt;br /&gt;
| allows marking edits as legitimate ([[Manual:$wgUseRCPatrol|$wgUseRCPatrol]] must be ''true'').&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| editinterface&lt;br /&gt;
| allows editing the [[Special:Allmessages|MediaWiki namespace]], which contains [[Manual:Interface|interface messages]].&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| editusercssjs &lt;br /&gt;
| allows editing *.css / *.js subpages of any user.  '''Split into editusercss and edituserjs in 1.16 but retained for backward compatibility.'''&lt;br /&gt;
| [[rev:25720|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| editusercss&lt;br /&gt;
| allows editing *.css subpages of any user.&lt;br /&gt;
| [[rev:54153|1.16+]]&lt;br /&gt;
|-&lt;br /&gt;
| edituserjs &lt;br /&gt;
| allows editing *.js subpages of any user.&lt;br /&gt;
| [[rev:54153|1.16+]]&lt;br /&gt;
|-&lt;br /&gt;
| suppressrevision&lt;br /&gt;
| allows preventing deleted revision information from being viewed by sysops and prevents sysops from undeleting the hidden info. '''Prior to [[rev:35303|1.13]] this right was named hiderevision''' (''not available by default'')&lt;br /&gt;
| [[rev:13224|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| deleterevision&lt;br /&gt;
| allows deleting/undeleting information (revision text, edit summary, user who made the edit) of specific revisions (''not available by default'')&lt;br /&gt;
| [[rev:13224|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
|{{hl3}} colspan=&amp;quot;3&amp;quot;| '''Administration'''&lt;br /&gt;
|-&lt;br /&gt;
| siteadmin&lt;br /&gt;
| allows locking and unlocking the database (which blocks all interactions with the web site except viewing). Deprecated by default.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| import&lt;br /&gt;
| allows user to [[m:Help:Import|import]] one page per time from another wiki (&amp;quot;transwiki&amp;quot;).&lt;br /&gt;
| [[rev:9498|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| importupload&lt;br /&gt;
| allows user to [[m:Help:Import|import]] several pages per time from XML files. This right was called 'importraw' in and before version 1.5.&lt;br /&gt;
| [[rev:9499|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| trackback&lt;br /&gt;
| allows removal of [http://www.sixapart.com/pronet/docs/trackback_spec trackbacks] (if [[Manual:$wgUseTrackbacks|$wgUseTrackbacks]] is ''true'').&lt;br /&gt;
| [[rev:14158|1.7+]]&lt;br /&gt;
|-&lt;br /&gt;
| unwatchedpages&lt;br /&gt;
| allows access to [[Special:Unwatchedpages]], which lists pages that no user has watchlisted.&lt;br /&gt;
| [[rev:12196|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
|{{hl3}} colspan=&amp;quot;3&amp;quot;| '''Technical'''&lt;br /&gt;
|-&lt;br /&gt;
| bot&lt;br /&gt;
| hides edits from recent changes lists and watchlists by default (can optionally be viewed).&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| purge&lt;br /&gt;
| allows purging a page without a confirmation step ([[Manual:URL|URL parameter]] &amp;quot;&amp;lt;code&amp;gt;&amp;amp;action=purge&amp;lt;/code&amp;gt;&amp;quot;).&lt;br /&gt;
| [[rev:19195|1.10+]]&lt;br /&gt;
|-&lt;br /&gt;
| minoredit&lt;br /&gt;
| allows marking an edit as 'minor'.&lt;br /&gt;
| [[rev:12359|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| nominornewtalk&lt;br /&gt;
| blocks new message notification when making minor edits to user talk pages (requires ''minor edit'' right).&lt;br /&gt;
| [[rev:17281|1.9+]]&lt;br /&gt;
|-&lt;br /&gt;
| noratelimit&lt;br /&gt;
| not affected by [[Manual:$wgRateLimits|rate limits]] (''prior to the introduction of this right, the configuration variable [[Manual:$wgRateLimitsExcludedGroups|$wgRateLimitsExcludedGroups]] was used for this purpose'')&lt;br /&gt;
| [[rev:35908|1.13+]]&lt;br /&gt;
|-&lt;br /&gt;
| ipblock-exempt&lt;br /&gt;
| makes user immune to blocks applied to his IP address or a range (CIDR) containing it.&lt;br /&gt;
| [[rev:18904|1.9+]]&lt;br /&gt;
|-&lt;br /&gt;
| proxyunbannable&lt;br /&gt;
| makes user immune to the open proxy blocker, which is disabled by default ([[Manual:$wgBlockOpenProxies|$wgBlockOpenProxies]]).&lt;br /&gt;
| [[rev:14158|1.7+]]&lt;br /&gt;
|-&lt;br /&gt;
| autopatrol&lt;br /&gt;
| automatically marks all edits by the user as patrolled ([[Manual:$wgUseRCPatrol|$wgUseRCPatrol]] must be ''true'').&lt;br /&gt;
| [[rev:18496|1.9+]]&lt;br /&gt;
|-&lt;br /&gt;
| apihighlimits&lt;br /&gt;
| allows user to use higher limits for [[API]] queries&lt;br /&gt;
| [[rev:27949|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| writeapi&lt;br /&gt;
| controls access to the write API ([[Manual:$wgEnableWriteAPI|$wgEnableWriteAPI]] must be ''true'')&lt;br /&gt;
| [[rev:35399|1.13+]]&lt;br /&gt;
|-&lt;br /&gt;
| suppressredirect&lt;br /&gt;
| Allows moving a page without automatically creating a redirect.&lt;br /&gt;
| [[rev:27774|1.12+]]&lt;br /&gt;
|-&lt;br /&gt;
| autoconfirmed&lt;br /&gt;
| used for the 'autoconfirmed' group, see the other table below for more information.&lt;br /&gt;
| [[rev:12207|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| emailconfirmed&lt;br /&gt;
| used for the 'emailconfirmed' group, see the other table below for more information.&lt;br /&gt;
| [[rev:15384|1.7]] - [[rev:33800|1.13]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{note|Although these permissions all control separate things, sometimes to perform certain actions you need multiple permissions. For example allowing people to edit but not read pages doesn't make sense, since in order to edit a page you must first be able to read it (Assuming no pages are whitelisted). Allowing uploads but not editing does not make sense since in order to upload an image you must implicitly create an image description page, etc.}}&lt;br /&gt;
&lt;br /&gt;
==List of Groups==&lt;br /&gt;
&lt;br /&gt;
The following groups are available in the latest version of MediaWiki.  If you are using an older version then some of these may not be implemented.&lt;br /&gt;
{| {{prettytable}}&lt;br /&gt;
|-&lt;br /&gt;
!{{hl2}} | Group&lt;br /&gt;
!{{hl2}} | Description&lt;br /&gt;
!{{hl2}} | Versions&lt;br /&gt;
|-&lt;br /&gt;
| *&lt;br /&gt;
| all users (including anonymous).&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| user&lt;br /&gt;
| registered accounts.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| autoconfirmed&lt;br /&gt;
| registered accounts at least as old as [[Manual:$wgAutoConfirmAge|$wgAutoConfirmAge]] and having at least as many edits as [[Manual:$wgAutoConfirmCount|$wgAutoConfirmCount]].&lt;br /&gt;
| [[rev:12207|1.6+]]&lt;br /&gt;
|-&lt;br /&gt;
| emailconfirmed&lt;br /&gt;
| registered accounts with confirmed email addresses.&lt;br /&gt;
| [[rev:15384|1.7]] - [[rev:33800|1.13]]&lt;br /&gt;
|-&lt;br /&gt;
| bot&lt;br /&gt;
| accounts with the ''bot'' right (intended for automated scripts).&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| sysop&lt;br /&gt;
| users who by default can delete and restore pages, block and unblock users, et cetera.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| bureaucrat&lt;br /&gt;
| users who by default can change other users' rights.&lt;br /&gt;
| [[rev:9367|1.5+]]&lt;br /&gt;
|-&lt;br /&gt;
| developer&lt;br /&gt;
| A group for the 'siteadmin' right. The group is deprecated by default, as well as the right.&lt;br /&gt;
| [[rev:9367|1.5]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
From MW 1.12, you can create your own groups into which users are automatically promoted (as with autoconfirmed and emailconfirmed) using [[Manual:$wgAutopromote|$wgAutopromote]].&lt;br /&gt;
&lt;br /&gt;
==Default rights==&lt;br /&gt;
The default rights are defined in [[Manual:DefaultSettings.php|DefaultSettings.php]].&lt;br /&gt;
* Default values in trunk version: [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/DefaultSettings.php?view=markup DefaultSettings.php]&lt;br /&gt;
* Default values in MediaWiki latest stable version 1.16.0:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
/**&lt;br /&gt;
 * Permission keys given to users in each group.&lt;br /&gt;
 * All users are implicitly in the '*' group including anonymous visitors;&lt;br /&gt;
 * logged-in users are all implicitly in the 'user' group. These will be&lt;br /&gt;
 * combined with the permissions of all groups that a given user is listed&lt;br /&gt;
 * in in the user_groups table.&lt;br /&gt;
 *&lt;br /&gt;
 * Note: Don't set $wgGroupPermissions = array(); unless you know what you're&lt;br /&gt;
 * doing! This will wipe all permissions, and may mean that your users are&lt;br /&gt;
 * unable to perform certain essential tasks or access new functionality&lt;br /&gt;
 * when new permissions are introduced and default grants established.&lt;br /&gt;
 *&lt;br /&gt;
 * Functionality to make pages inaccessible has not been extensively tested&lt;br /&gt;
 * for security. Use at your own risk!&lt;br /&gt;
 *&lt;br /&gt;
 * This replaces wgWhitelistAccount and wgWhitelistEdit&lt;br /&gt;
 */&lt;br /&gt;
$wgGroupPermissions = array();&lt;br /&gt;
&lt;br /&gt;
// Implicit group for all visitors&lt;br /&gt;
$wgGroupPermissions['*']['createaccount']    = true;&lt;br /&gt;
$wgGroupPermissions['*']['read']             = true;&lt;br /&gt;
$wgGroupPermissions['*']['edit']             = true;&lt;br /&gt;
$wgGroupPermissions['*']['createpage']       = true;&lt;br /&gt;
$wgGroupPermissions['*']['createtalk']       = true;&lt;br /&gt;
$wgGroupPermissions['*']['writeapi']         = true;&lt;br /&gt;
//$wgGroupPermissions['*']['patrolmarks']      = false; // let anons see what was patrolled&lt;br /&gt;
&lt;br /&gt;
// Implicit group for all logged-in accounts&lt;br /&gt;
$wgGroupPermissions['user']['move']             = true;&lt;br /&gt;
$wgGroupPermissions['user']['move-subpages']    = true;&lt;br /&gt;
$wgGroupPermissions['user']['move-rootuserpages'] = true; // can move root userpages&lt;br /&gt;
//$wgGroupPermissions['user']['movefile']         = true;	// Disabled for now due to possible bugs and security concerns&lt;br /&gt;
$wgGroupPermissions['user']['read']             = true;&lt;br /&gt;
$wgGroupPermissions['user']['edit']             = true;&lt;br /&gt;
$wgGroupPermissions['user']['createpage']       = true;&lt;br /&gt;
$wgGroupPermissions['user']['createtalk']       = true;&lt;br /&gt;
$wgGroupPermissions['user']['writeapi']         = true;&lt;br /&gt;
$wgGroupPermissions['user']['upload']           = true;&lt;br /&gt;
$wgGroupPermissions['user']['reupload']         = true;&lt;br /&gt;
$wgGroupPermissions['user']['reupload-shared']  = true;&lt;br /&gt;
$wgGroupPermissions['user']['minoredit']        = true;&lt;br /&gt;
$wgGroupPermissions['user']['purge']            = true; // can use ?action=purge without clicking &amp;quot;ok&amp;quot;&lt;br /&gt;
$wgGroupPermissions['user']['sendemail']        = true;&lt;br /&gt;
&lt;br /&gt;
// Implicit group for accounts that pass $wgAutoConfirmAge&lt;br /&gt;
$wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;&lt;br /&gt;
&lt;br /&gt;
// Users with bot privilege can have their edits hidden&lt;br /&gt;
// from various log pages by default&lt;br /&gt;
$wgGroupPermissions['bot']['bot']              = true;&lt;br /&gt;
$wgGroupPermissions['bot']['autoconfirmed']    = true;&lt;br /&gt;
$wgGroupPermissions['bot']['nominornewtalk']   = true;&lt;br /&gt;
$wgGroupPermissions['bot']['autopatrol']       = true;&lt;br /&gt;
$wgGroupPermissions['bot']['suppressredirect'] = true;&lt;br /&gt;
$wgGroupPermissions['bot']['apihighlimits']    = true;&lt;br /&gt;
$wgGroupPermissions['bot']['writeapi']         = true;&lt;br /&gt;
#$wgGroupPermissions['bot']['editprotected']    = true; // can edit all protected pages without cascade protection enabled&lt;br /&gt;
&lt;br /&gt;
// Most extra permission abilities go to this group&lt;br /&gt;
$wgGroupPermissions['sysop']['block']            = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['createaccount']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['delete']           = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['bigdelete']        = true; // can be separately configured for pages with &amp;gt; $wgDeleteRevisionsLimit revs&lt;br /&gt;
$wgGroupPermissions['sysop']['deletedhistory']   = true; // can view deleted history entries, but not see or restore the text&lt;br /&gt;
$wgGroupPermissions['sysop']['deletedtext']      = true; // can view deleted revision text&lt;br /&gt;
$wgGroupPermissions['sysop']['undelete']         = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['editinterface']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['editusercss']      = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['edituserjs']       = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['import']           = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['importupload']     = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['move']             = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['move-subpages']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['move-rootuserpages'] = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['patrol']           = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['autopatrol']       = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['protect']          = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['proxyunbannable']  = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['rollback']         = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['trackback']        = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['upload']           = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['reupload']         = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['reupload-shared']  = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['unwatchedpages']   = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['autoconfirmed']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['upload_by_url']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['ipblock-exempt']   = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['blockemail']       = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['markbotedits']     = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['apihighlimits']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['browsearchive']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['noratelimit']      = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['versiondetail']    = true;&lt;br /&gt;
$wgGroupPermissions['sysop']['movefile']         = true;&lt;br /&gt;
#$wgGroupPermissions['sysop']['mergehistory']     = true;&lt;br /&gt;
&lt;br /&gt;
// Permission to change users' group assignments&lt;br /&gt;
$wgGroupPermissions['bureaucrat']['userrights']  = true;&lt;br /&gt;
$wgGroupPermissions['bureaucrat']['noratelimit'] = true;&lt;br /&gt;
// Permission to change users' groups assignments across wikis&lt;br /&gt;
#$wgGroupPermissions['bureaucrat']['userrights-interwiki'] = true;&lt;br /&gt;
// Permission to export pages including linked pages regardless of $wgExportMaxLinkDepth&lt;br /&gt;
#$wgGroupPermissions['bureaucrat']['override-export-depth'] = true;&lt;br /&gt;
&lt;br /&gt;
#$wgGroupPermissions['sysop']['deleterevision']  = true;&lt;br /&gt;
// To hide usernames from users and Sysops&lt;br /&gt;
#$wgGroupPermissions['suppress']['hideuser'] = true;&lt;br /&gt;
// To hide revisions/log items from users and Sysops&lt;br /&gt;
#$wgGroupPermissions['suppress']['suppressrevision'] = true;&lt;br /&gt;
// For private suppression log access&lt;br /&gt;
#$wgGroupPermissions['suppress']['suppressionlog'] = true;&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * The developer group is deprecated, but can be activated if need be&lt;br /&gt;
 * to use the 'lockdb' and 'unlockdb' special pages. Those require&lt;br /&gt;
 * that a lock file be defined and creatable/removable by the web&lt;br /&gt;
 * server.&lt;br /&gt;
 */&lt;br /&gt;
# $wgGroupPermissions['developer']['siteadmin'] = true;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Help:Assigning permissions]] - help page describing use of the Special:Userrights interface (for bureaucrats)&lt;br /&gt;
* [[Manual:User rights management]] - information about managing and the assignment of user groups.&lt;br /&gt;
* [[Manual:$wgNamespaceProtection]]&lt;br /&gt;
* [[Manual:$wgAutopromote]]&lt;br /&gt;
* [[Manual:Preventing access]] (examples)&lt;br /&gt;
* [[:Category:User rights extensions]] - Many extensions relating to user rights&lt;br /&gt;
&lt;br /&gt;
{{Languages}}&lt;br /&gt;
&lt;br /&gt;
{{Categories}}&lt;/div&gt;</summary>
		<author><name>Tynian</name></author>
	</entry>
</feed>