X
X
xSkyFoXx2012-10-19 14:20:53
MediaWiki
xSkyFoXx, 2012-10-19 14:20:53

Is it possible to restrict access to our mediawiki to registered and verified users only?

We have mediawiki. But since our team is scattered everywhere, it is located on an external, Internet-accessible server. Does the wiki allow me to make it so that only users who are registered and moderated by me, for example, can view and change the material, and for everyone else it would be almost an empty site? Or will you have to use basic authorization on the server?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Mithgol, 2012-10-19
@xSkyFoXx

Yes, MediaWiki allows it .

# Запрет самостоятельной регистрации новых пользователей:
$wgGroupPermissions['*']['createaccount'] = false;
# Запрет анонимного редактирования:
$wgGroupPermissions['*']['edit'] = false;
# Запрет анонимного создания страниц:
$wgGroupPermissions['*']['createpage'] = false;
$wgGroupPermissions['*']['createtalk'] = false;
$wgGroupPermissions['*']['writeapi']   = false;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question