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.
In my wiki, there are three areas: 1) Not read- and writeable for group * 2) Only readable for group * 3) Read- and writeable for group *
I've tried to manage this with EditSubpages extension but it didn't work, it just showed me confusing "header already set" warnings. So: Are there other ways to manage this constellation?
Cheers Dauerbaustelle