Manual:Preventing access/es
Para obtener ayuda sobre la personalización de los derechos de usuario, consulta Manual:Derechos de usuarios . Esta página contiene ejemplos útiles para restringir el acceso.
Para más información sobre cómo editar LocalSettings.php
, consulta Manual:LocalSettings.php .
Para una mejor restricción de accesos, considera Extension:AccessControl o Extensión:ConfirmAccount .
Wiki privado sencillo
Para el caso de uso común de «un wiki privado, para uno mismo y otros usuarios autorizados», debes:
- § Restringir la visualización
- § Restringir la edición
- § Restringir la creación de cuentas de usuario
# Deshabilitar la lectura para usuarios anónimos
$wgGroupPermissions['*']['read'] = false;
# Deshabilitar la edición para usuarios anónimos
$wgGroupPermissions['*']['edit'] = false;
# Impedir nuevos registros de usuarios excepto por operadores del sistema
$wgGroupPermissions['*']['createaccount'] = false;
Dependiendo de las extensiones que tengas instaladas, puede que desees añadir más páginas a la lista blanca.
Por ejemplo, si utilizas la extensión Extensión:ConfirmAccount , probablemente quieras Special:RequestAccount
esté en la lista blanca.
Si el idioma de contenido de tu wiki no es el inglés, puede que tengas que utilizar el nombre traducido de las páginas especiales en cuestión.
Restringir la creación de cuentas
Para restringir la creación de cuentas, debes editar LocalSettings.php
en la ruta raíz de tu instalación de MediaWiki.
# Impedir nuevos registros de usuarios excepto por operadores del sistema
$wgGroupPermissions['*']['createaccount'] = false;
- Ve a Special:Userlogin habiendo iniciado sesión como operador de sistema.
- Haz clic en el enlace «Crear cuenta» para acceder al formulario de creación de cuentas.
Introduce un nombre de usuario y una dirección de correo electrónico y haz clic en el botón «por correo electrónico». Ten en cuenta que necesitarás que $wgEnableEmail=true o en otro caso el operador de sistema tendrá que escoger una contraseña y enviársela al usuario.
- Se creará la cuenta con una contraseña aleatoria que se enviará a la dirección dada de correo electrónico (al igual que con la funcionalidad de «¿has olvidado tu contraseña?»). Ante el primer inicio de sesión, se le pedirá al usuario que cambie la contraseña; una vez hecho esto, también se marcará la dirección de correo electrónico como confirmada.
- Si en su lugar haces clic en el botón «crear cuenta», deberás enviar la contraseña al usuario de forma manual.
También puedes modificar el contenido del correo enviado a los nuevos usuarios editando la página MediaWiki:Createaccount-text.
Para impedir incluso a los operadores de sistema la creación de cuentas:
# Impedir nuevos registros de usuarios por cualquier usuario.
$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['sysop']['createaccount'] = false;
Para añadir un mensaje a la parte superior del formulario de inicio de sesión, modifica MediaWiki:Loginprompt.
Restringir la edición
Restringir la edición de todas las páginas
Los usuarios seguirán pudiendo leer páginas con estas modificaciones, y podrán ver el código fuente recurriendo a Special:Export/Nombre del artículo u otros métodos.
Véase también bug 1859 Fixed.
Véanse Help:User rights y $wgGroupPermissions
.
Si utilizas Extensión:AbuseFilter , cualquier administrador del wiki también podrá establecer diversas restricciones.
Algunos ejemplos de cómo proteger todas las páginas de la edición (no de la lectura) por parte de determinadas clases de usuarios:
Restringir la edición anónima
Requiere que un usuario esté registrado para poder editar.
$wgGroupPermissions['*']['edit'] = false;
Restringir la edición únicamente a los operadores de sistema
Requiere que un usuario sea miembro del grupo de administradores (operadores de sistema).
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = false;
$wgGroupPermissions['sysop']['edit'] = true;
Restringir la edición a absolutamente todos los usuarios
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = false;
$wgGroupPermissions['sysop']['edit'] = false;
Restringir la edición de un espacio de nombres completo
Versión de MediaWiki: | ≥ 1.10 |
A partir de la versión 1.10 de MediaWiki, es posible proteger espacios de nombres completos mediante la variable $wgNamespaceProtection
.
Ejemplos:
# Permitir solo a los usuarios autoconfirmados la edición del espacio de nombres Project
$wgNamespaceProtection[NS_PROJECT] = array( 'autoconfirmed' );
# No permitas a nadie editar páginas que no sean de discusión hasta que hayan confirmado su dirección de correo electrónico (asumiendo que no tengamos espacios de nombres personalizados y que permitamos ediciones de usuarios que no hayan confirmado su dirección de correo electrónico, para empezar)
# Nota para 1.13: el grupo «emailconfirmed» y sus permisos fueron eliminados de la configuración predeterminada; si deseas utilizarlo, tendrás que volver a habilitarlo a mano
$wgNamespaceProtection[NS_MAIN] = $wgNamespaceProtection[NS_USER] =
$wgNamespaceProtection[NS_PROJECT] = $wgNamespaceProtection[NS_IMAGE] =
$wgNamespaceProtection[NS_TEMPLATE] = $wgNamespaceProtection[NS_HELP] =
$wgNamespaceProtection[NS_CATEGORY] = array( 'emailconfirmed' );
# Permitir solo a los operadores de sistema editar el espacio de nombres «Policy»
$wgGroupPermissions['sysop']['editpolicy'] = true;
$wgNamespaceProtection[NS_POLICY] = array( 'editpolicy' );
Ten en cuenta que en el último caso se asume que exista un espacio de nombres personalizado y que NS_POLICY
sea una constante definida igual al identificador del espacio de nombres.
Véanse Manual:Cómo usar espacios de nombres personalizados y Manual:Constantes de espacios de nombres para una lista de los espacios de nombres del núcleo de MediaWiki.
Restringir la edición de determinadas páginas específicas
Utiliza la funcionalidad de protección . Por defecto, cualquier operador de sistema puede proteger páginas, por lo que solo los operadores de sistema pueden editarlas. En 1.9 y posteriores, por defecto, también pueden proteger las páginas para que solo los usuarios «autoconfirmados» (con cuentas de mayor antigüedad que un plazo configurado) puedan editarlas. Esto no requiere editar archivos de configuración.
Si deseas restringir la edición a grupos con permisos específicos, edita $wgRestrictionLevels . Para impedir acciones distintas de la edición y el traslado, utiliza $wgRestrictionTypes .
Restringir la edición de todas las páginas menos unas pocas
Para imponer una restricción general a la edición de todas las páginas, pero permitir que algunas (como zonas de pruebas, páginas de solicitudes, etc.) se puedan editar con mayor liberalidad, puedes utilizar la extensión EditSubpages . Puede que no se ajuste muy a menudo a las necesidades, pero también puedes utilizar el método de restringir la edición de determinadas páginas específicas descrito anteriormente, con todos los espacios de nombres protegidos con una sola excepción, editable por cualquier usuario y que contenga todas las páginas que desees que sean editables.
Restringir la edición para determinados rangos de direcciones IP
Schools and other institutions may want to block all edits not from a few specified IP address ranges. To do so, see Manual:Bloquear y desbloquear . The only way to do this at present without modifying the code is to go to Special:Blockip and systematically rangeblock every one of the address ranges that you don't want to be able to edit. This will work for all future versions of MediaWiki. It will not work on a per-namespace basis.
Restrict editing by a particular user
Use the user blocking functionality to deprive a user of all edit access. MediaWiki does not include a possibility to give rights to separate users directly; instead rights are always given to a user group. There is no way in the core software to change permissions of particular users in order to restrict or allow editing particular pages, except by changing their usergroup.
Restrict creating of all pages
# Anonymous users can't create pages
$wgGroupPermissions['*']['createpage'] = false;
# Only users with accounts four days old or older can create pages
# Requires MW 1.6 or higher.
$wgGroupPermissions['*' ]['createpage'] = false;
$wgGroupPermissions['user' ]['createpage'] = false;
$wgGroupPermissions['autoconfirmed']['createpage'] = true;
Restrict creating pages in certain namespaces
There are separate rights for creating talk pages (createtalk) and creating non-talk pages (createpage). If you need per-namespace control finer than that, it is not possible in core MediaWiki, and requires an extension such as Extension:Lockdown .
Restrict access to uploaded files
If you have enabled the ability to upload files, these will be served directly by the underlying web server. As a result, account-based access to the file is unrestricted by default.
'read'
to false
only restricts access to wiki pages (such as articles and talk pages). Uploaded files (including images, files, docs) under the $wgUploadPath
subdirectories will always remain publicly accessible via direct URL access by default.To restrict access to uploaded files, refer to the instructions in Manual: Autorización de imagen and img_auth.php .
Example for access restriction to uploaded files in the server configuration
If sensitive files are uploaded to an internet-accessible wiki, you may wish to add restrictions on where these can be accessed from. On Apache, if your local network were 10.1.2.*, you could restrict serving files to local addresses with:
<Location /mediawiki/images> Order deny,allow Allow from 10.1.2.3 Deny from all </Location>
Restrict viewing
Restrict viewing of all pages
Add this line to your LocalSettings.php
file:
# Disable reading by anonymous users
$wgGroupPermissions['*']['read'] = false;
# But allow them to read e.g., these pages:
$wgWhitelistRead = [ "Main Page", "Help:Contents" ];
The $wgWhitelistRead
setting allows users to view the main page.
If page names have more than one word, use a space " " between them, not an underscore "_".
In addition to the main page of such a private site, you could give access to the Recentchanges page (if you think that its content isn't private) for feed readers by adding Special:Recentchanges to $wgWhitelistRead
.
If you need to protect even the sidebar, main page, or login screen for any reason, it's recommended that you use higher-level authentication such as .htpasswd or equivalent.
Restrict viewing of certain specific pages
![]() | MediaWiki was not designed to support per-page or partial-page access restrictions. If you require this level of control, you are strongly advised to use a content management system that supports it natively.
Patches or third-party extensions claiming to provide access control may contain security flaws, potentially exposing confidential data. Use them at your own risk. Neither the MediaWiki developers nor the Wikimedia Foundation are responsible for any data leaks that may result. This message is added to all extensions of this nature and may not reflect the actual security status of this extension. For more information, see Security issues with authorization extensions . |
To prevent anyone but sysops from viewing a page, it can simply be deleted . To prevent even sysops from viewing it, it can be removed more permanently using Manual:RevisionDelete . To completely destroy the text of the page, it can be manually removed from the database. In any case, the page cannot be edited while in this state, and for most purposes no longer exists.
To have a page act normally for some users but be invisible to others, as is possible for instance in most forum software, is a very different matter. MediaWiki is designed for two basic access modes:
- Everyone can view every single page on the wiki (with the possible exception of a few special pages).
This is the mode used by Wikipedia and its sister projects.
- Anonymous users can only view the Main Page and login page, and cannot edit any page.
This is basically the same as the above, in terms of technical implementation (just an extra check for every page view), which is why it exists. This is the mode of operation used by certain private wikis such as those used by various Wikimedia committees.
If you intend to have different view permissions than that, MediaWiki is not designed for your usage.
(Véase T3924 Declined.)
Data is not necessarily clearly delineated by namespace, page name, or other criteria, and there are a lot of leaks you'll have to plug if you want to make it so (see security issues with authorization extensions for a sample).
Other wiki software may be more suitable for your purpose.
You have been warned.
If you must use MediaWiki, there are three basic possibilities:
- Set your wiki up private and whitelist specific pages that will be public with
$wgWhitelistRead
in the LocalSetting.php file.
See the section above.
- Set up separate wikis with a shared user database , configure one as viewable and one as unviewable (see above), and make interwiki links between them.
- Install a third-party hack or extension.
You will have to reapply it every time you upgrade the software, and it may not be updated immediately when new security fixes or upgrades of MediaWiki are released. Third-party hacks are, of course, not supported by MediaWiki developers, and if you're having problems you shouldn't ask on MediaWiki-l, #mediawiki, or other official support channels. A number of hacks are listed in Category:Page specific user rights extensions . Read about security issues with authorization extensions if you plan to use one of those.
Restricting exporting
Véase también: Manual:Parámetros para Special:Export
It is not possible to export the contents of a page that cannot be read since r19935.
Removing the Login link from all pages
One can remove the login/create-account link from the upper right corner of all pages, as users can still go to Special:SpecialPages
→ Special:UserLogin
to log in.
In LocalSettings.php
use (tested with MediaWiki 1.43.0 LTS):
$wgHooks['SkinTemplateNavigation::Universal'][] = function ( $skinTemplate, &$links ) {
unset( $links['user-menu']['createaccount'] );
unset( $links['user-menu']['login'] );
unset( $links['user-menu']['login-private'] );
unset( $links['user-menu']['anoncontribs'] );
};
Removing accounts
If you want to completely remove access to a user, e.g. on a simple private wiki, it's not possible to simply delete the account (unless no edits have been made ); you can block it, but the user will still be able to read pages (unless $wgBlockDisablesLogin
is set).
However, using User Merge and Delete extension you can merge the account in another one and delete the former; the original account will then "disappear".
If you want to preserve history readability (i.e., to have edits from the user to be still shown under their name), you can create a new account e.g. with username "OriginalUserName (deactivated)" and then merge "OriginalUserName" into the former, or even use Renameuser extension to rename "OriginalUserName" into "AnotherUserName", then create an account under "OriginalUserName" and merge "AnotherUserName" into it: in this manner, "OriginalUserName" will be completely "usurped" (if you've set a non-null password).
Other restrictions
You may want to have pages editable only by their creator, or ban viewing of history, or any of a number of other things. None of these features are available in an unhacked version of MediaWiki. If you need more fine-grained permissions, see the #See also section for links to other wiki packages that are designed for this, as well as hacks that attempt to contort MediaWiki into something it's not designed to be but may work anyway.
See also
There are some related manual/help pages that may be of interest:
- Manual:LocalSettings.php
- Manual:$wgGroupPermissions
- Manual:$wgRestrictionTypes
- Manual:$wgRestrictionLevels
- Manual:$wgNamespaceProtection
- Manual:$wgEmailConfirmToEdit
- Manual:$wgNonincludableNamespaces
- Manual:Derechos de usuarios
- Ayuda:Permisos y grupos de usuario
Other wiki software may have better support for fine-grained access control than MediaWiki:
If you want better access control but want to use MediaWiki, this is a list of extensions and hacks to allow restrictions not possible in the software proper. These hacks may be out-of-date (check the version they're for). Please don't ask in official MediaWiki support channels if something goes wrong with a third-party hack.
- Extension:Flagged Revisions
- Extensión:Moderación
- Extensión:Approved Revs
- Extension:Lockdown
- Extension:AuthorProtect
- Extension:EditSubpages - restricts anonymous users from editing most pages
- Extension:NSFileRepo