On Tue, May 20, 2008 at 9:20 AM, Jonas Haag jonas@jonashaag.de wrote:
Hello, I've set my wiki to be not read- and writeable for not logged-in users:
$wgGroupPermissions['*']['read'] = false; $wgGroupPermissions['*']['edit'] = false;
My read-whitelist I've managed with
$wgWhitelistRead = array (...)
The thing is that afaik there's no
$wgWhitelistWrite
but I need such a whitelist.
You can't make part of the wiki writable if you want other parts to be non-readable since people can simply tranclude the pages they're not meant to be able to view into the page they're allowed to edit using {{:Article name}}.
https://bugzilla.wikimedia.org/show_bug.cgi?id=8462 is about this and was closed as wontfix.
Angela