Answer the question
In order to leave comments, you need to log in
How to allow a normal user to view a specific page?
I have a small private wiki and I want registered users to be able to read certain articles.
If you use that, the user will be prohibited from everything (this is necessary). But I want to give this user access to a specific article. How can this be implemented?
PS I tried the LockDown plugin, but it only limits the rights, ie. if the user had no rights, then it won't.$wgGroupPermissions['user']['read'] = false;
Answer the question
In order to leave comments, you need to log in
So users will be able to read all the articles, but guests will not:
$wgGroupPermissions['*']['read'] = false;
$wgGroupPermissions['user']['read'] = true;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question