Hi,
I have set user rigths in LocalSetting.php (Anonymous users cannot read or edit any other page, but can still create accounts):
$wgGroupPermissions['*' ]['read'] = false; $wgGroupPermissions['user' ]['read'] = true; $wgWhitelistRead = array("Main Page", 'Special:RequestAccount',);
How can I use RequestAccount extension with this settings? How can Anonymous users reach the RequestAccount page?
It could be the solution if I install a link to Main Page. --> How can I set a link to the Main Page?
What could be the right solution?
Please write me soon. Regards, Gábor
On 10/16/07, Reizer Gábor reizer.gabor@gmail.com wrote:
Hi,
I have set user rigths in LocalSetting.php (Anonymous users cannot read or edit any other page, but can still create accounts):
$wgGroupPermissions['*' ]['read'] = false; $wgGroupPermissions['user' ]['read'] = true; $wgWhitelistRead = array("Main Page", 'Special:RequestAccount',);
How can I use RequestAccount extension with this settings? How can Anonymous users reach the RequestAccount page?
It could be the solution if I install a link to Main Page. --> How can I set a link to the Main Page?
What could be the right solution?
Please write me soon. Regards, Gábor
Well, for starters, you need to have Special:Userlogin whitelisted, or NOBODY will be able to log in. :) (You may also want to add a few other pages: Check out the documentation for $wgWhitelistRead < http://www.mediawiki.org/wiki/Manual:$wgWhitelistRead%3E.)
For the ConfirmAccount extension, I believe the extension automatically adds a link to the login page. You can also link to it on the main page as you would link to any other page (i.e. "You can [[Special:RequestAccount|request an account]]!")
mediawiki-l@lists.wikimedia.org