Hello,
I'm would like to hide history, disscussion, special page and others to just the admin, which is myself.
How can I hide pages from logged in and non-logged in users?
I'm using this approach but I'm unable to get list all the pages I want to hide.
$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['*']['edit'] = false;
Then for the logged in users they can edit, delete, read so for them I'm using:
$wgGroupPermissions['user']['edit'] = true;
$wgGroupPermissions['user']['upload'] = true;
$wgGroupPermissions['user']['reupload'] = true;