At 10:44 -0600 20/6/07, Daniel Cannon wrote:
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();
Done!
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.
-- Daniel Cannon (AmiDaniel)
http://amidaniel.com cannon.danielc@gmail.com
I get.... (not logged in)...
Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
Gordo