Topic on Extension talk:ConfirmAccount

Cannot whitelist "Special:RequestAccount"

4
Summary by Seb35

A tip to whitelist this special page.

JP8827 (talkcontribs)

First time user of MediaWiki. Trying to create a private Wiki (anonymous users cannot read/write until they sign-up). However, when accessing the RequestAccount page, the "Login Required" screen appears. I've whitelisted the RequestAccount, not sure what else needs to be done. v 1.27.1

$wgWhitelistRead =  array ("Main Page", "Special:UserLogin", "Special:RequestAccount", "-");

$wgGroupPermissions['*']['createaccount'] = true;

$wgGroupPermissions['*']['read'] = false;

$wgGroupPermissions['*']['edit'] = false;
Edwinalmeda (talkcontribs)

Whitelisting "Special:RequestAccount" willl not be needed since you have set the permissions of $wgGroupPermissions['*']['createaccount'] to true. which means that anyone can create an account.

Try setting $wgGroupPermissions['*']['createaccount'] = false;

to make requesting an account relevant

Seb35 (talkcontribs)
Seb35 (talkcontribs)

This was partly in the documentation and I have just added a precision.