F
F
Fotikiki2015-03-31 14:10:50
CMS
Fotikiki, 2015-03-31 14:10:50

Working with MediaWiki or another engine?

a web archive is being developed, such as a wiki, and the question arose.
it is necessary that the site has the ability for all users to add material, but only the editor can delete and edit it.
how to implement this in MediaWiki or in which engine can this be done?
it is desirable to set it up without dancing with a tambourine.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
U
UksusoFF, 2015-03-31
@UksusoFF

$wgGroupPermissions['user']['createpage'] = true;
$wgGroupPermissions['user']['edit'] = false;
$wgGroupPermissions['user']['delete'] = false;
$wgGroupPermissions['bureaucrat']['edit'] = true;
$wgGroupPermissions['bureaucrat']['delete'] = true;
www.mediawiki.org/wiki/Manual:User_rights#Examples

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question