Difference between revisions of "Wiki - Account Self-Creation"
Jump to navigation
Jump to search
Line 20: | Line 20: | ||
= What's next? = | = What's next? = | ||
Need to take it one step further. | |||
Set up a mechanism for registered & confirmed users to request "Editor" status? | |||
[[Category:WikiServers]] | [[Category:WikiServers]] |
Revision as of 14:10, 4 January 2022
When you run a public-facing Wiki, it's kinda handy to let users create their own accounts.
But...
You need to control what they can do.
Enabling the "Create Account" link for non logged-in users.
sudo vi LocalSettings.php
:
Set:
$wgGroupPermissions['*']['createaccount'] = true;
Enforcing email authentication
$wgGroupPermissions['*']['edit'] = false; $wgGroupPermissions['user']['edit'] = false; $wgAutopromote['emailconfirmed'] = APCOND_EMAILCONFIRMED; $wgGroupPermissions['emailconfirmed']['edit'] = true;
(You'll want to have email set up, of course...)
What's next?
Need to take it one step further.
Set up a mechanism for registered & confirmed users to request "Editor" status?