Answer the question
In order to leave comments, you need to log in
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
$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 questionAsk a Question
731 491 924 answers to any question