MediaWiki - CMS |
7 Authentication / Authorization |
15.06.2007 |
| ← 6.3 User Management | [ up ] - [ A - Z ] - [ top ] | 7.1 Block anonymous Users → |
7.1 Block anonymous Users 7.2 includes/AuthPlugin.php 7.3 Authorization 7.3.1 Restrict Access
Notes on Authorization and Authentication
The superuser of MediaWiki is WikiSysop. A user belongs to one ore more groups.
MediaWiki always converts the first character of the user name to upper case.
There are three groups defined by default:
- bot
A registered bot account. Edits by an account with this set will not appear by default in Recentchanges; this is intended for mass imports of data without flooding human edits from view. (Add &hidebots=0 to list changes) Like this- sysop
Protected pages: Only users with 'sysop' privileges can edit it.- Bureaucrat
Can grant 'sysop' status to a user.
See also Authorization how you could remove specific functions from users.
WikiSysop is member of 'sysop' and 'Bureaucrat' by default.
A new user is not a member of any group after creation.
List all users in SQL
mysql> select user_id,user_name,user_touched,user_email_authenticated,user_email_token_expires from sunri_user where user_name='Retox';
+---------+-----------+----------------+--------------------------+--------------------------+ | user_id | user_name | user_touched | user_email_authenticated | user_email_token_expires | +---------+-----------+----------------+--------------------------+--------------------------+ | 4 | Retox | 20051116101941 | NULL | 20051123101936 | +---------+-----------+----------------+--------------------------+--------------------------+
Admin URLs
- List Users
localhost/wiki/index.php/Special:Listusers↑
- User rights management
localhost/wiki/index.php/Special:Userrights↑
- Block User
localhost/wiki/index.php/Special:Blockip↑
- List All Messages
localhost/wiki/index.php/Special:Allmessages↑
See also:
- meta.wikimedia.org/wiki/Setting_user_rights_in_MediaWiki - Reference
Setting user rights in MediaWiki
meta.wikimedia.org/wiki/Setting_user_rights_in_MediaWiki
- meta.wikimedia.org/wiki/Access_control - Reference
MediaWiki's access control features. Permission management of users who have already been authenticated
meta.wikimedia.org/wiki/Access_control
- meta.wikimedia.org/wiki/Authentication - Reference
Access control in MediaWiki
meta.wikimedia.org/wiki/Authentication
- meta.wikimedia.org/wiki/LDAP_Authentication - Reference
MediaWiki LDAP Authentication
meta.wikimedia.org/wiki/LDAP_Authentication
← 6.3 User Management
A - Z Index
Top
Disclaimer
7.1 Block anonymous Users →
$Id: authentication-authorization.html,v 1.104 2007/06/15 11:49:14 webcms Exp $
copyright © 2005-2007 by reto