Handbuch:$wgWhitelistRead
Benutzerrechte, Zugriffskontrolle und Überwachung: $wgWhitelistRead | |
---|---|
Seiten, die ein anonymer Nutzer sehen kann. |
|
Eingeführt in Version: | 1.1.0 |
Entfernt in Version: | Weiterhin vorhanden |
Erlaubte Werte: | (array of page names) or false |
Standardwert: | false |
Andere Einstellungen: Alphabetisch | Nach Funktion |
Details
If a group of users is blocked from viewing the wiki by using the $wgGroupPermissions configuration parameter...
$wgGroupPermissions[...]['read'] = false;
...you may still want them to be able to view certain key pages, in particular the main page! This setting holds an array of page names that all users are allowed to view, regardless of their group permissions.
A recommended minimum which allows everyone to view the home page and the login screen as well as loading CSS/JS customizations is as follows:
- MediaWiki ≥ 1.18.1[1]
$wgWhitelistRead = [
'Main Page',
'MediaWiki:Common.css',
'MediaWiki:Common.js'
];
"Main Page" uses spaces instead of underscores between words.
Siehe auch