Topic on Project:Support desk

How can I set closed wiki to open at LocalSettings.php?

2
Parkyh1974 (talkcontribs)

I've set up mediawiki using Docker image by kristophjunge.

It is successful. but the setup was for closed users. I want to change it to open

as default wiki. But there is no set up for my old LocalSettings.php and docked image's

LocalSettings.php .


How can I change it to be open wiki?

Ciencia Al Poder (talkcontribs)

You probably have this setting in your LocalSettings.php (from, Manual:Preventing access#Simple private wiki)

# Disable reading by anonymous users
$wgGroupPermissions['*']['read'] = false;
# Disable anonymous editing
$wgGroupPermissions['*']['edit'] = false;
# Prevent new user registrations except by sysops
$wgGroupPermissions['*']['createaccount'] = false;

You can simply remove or comment-out those lines.