Jump to content

Topic on Project:Support desk/Flow

Problems with $wgGroupPermissions

2
189.42.237.130 (talkcontribs)

Hey there Well,i'm having lots of problems to set user rights in my wiki.I'm trying to block everything except reading to all but administrators. I want to use my wiki for user reference,enabling creating and editing only to personnel of the I.T sector I've created the following on the LocalSettings.php

$wgGroupPermissions['readers']['createpage'] = false; $wgGroupPermissions['readers']['edit'] = false;


Well,despite adding those lines,created users continued to have the permission to create and edit pages

Then i added

$wgGroupPermissions['*']['createpage'] = false; $wgGroupPermissions['*']['edit'] = false;

And all users,including administrators,lost the permission to create/edit

Any ideia on how to solve this problem? Thanks for the attention

Emufarmers (talkcontribs)

$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = false;
$wgGroupPermissions['sysop']['edit'] = true;