I want to disallow that my registered Mediawiki users are able to modify their User page. Anything else should be editable by default as usual.
Two methods:
LocalSettings.php
:
Add them to bottom of LocalSettings.php
:$wgNamespaceProtection[NS_USER] = "editprotected";
Then, only sysop
can edit it, if you want disable anyone to edit, replace editprotected
to abcdefghijklmnopqrstuvwxyz
or other undefined rights.
page_namespace = 2
And set action of this filter to "block".