Hi Gordon,
On 6/20/07, Gordon Joly gordon.joly@pobox.com wrote:
It appears to be failing to stop non logged in users from editing.
Here is the code I have on the live site.
Yikes. Remove this line:
$wgGroupPermissions = array();
This will remove all the rights set up in DefaultSettings.php
$wgGroupPermissions['*' ]['createaccount'] = true;
$wgGroupPermissions['*' ]['read'] = true; $wgGroupPermissions['*' ]['edit'] = false;
$wgGroupPermissions['user' ]['move'] = true; $wgGroupPermissions['user' ]['read'] = true; $wgGroupPermissions['user' ]['edit'] = true; $wgGroupPermissions['user' ]['upload'] = true;
The rest of it looks fine. Try removing that line and see if it fixes your problem.