Topic on Project:Support desk

93.105.96.131 (talkcontribs)

I want to remove permission to editing articles on my Wiki for all users except me (I'm administrator).

Is that enought:

$wgGroupPermissions['*']['edit'] = false; $wgGroupPermissions['user']['edit'] = false; $wgGroupPermissions['sysop']['edit'] = false;
87.123.0.3 (talkcontribs)

If your users are not member of other groups, of which at least one does have the edit right, then this is enough. By default, users belong to the "*" and to the "user" group only and depending on settings they might become member of the "autoconfirmed" group after time/edits.

$wgGroupPermissions['sysop']['edit'] = false; removes edit permissions from administrators. You want to set that permission to true, instead.

Reply to "Editing perrmision"