1
0
Fork 0

mediawiki: enable interwiki

Closes #123
This commit is contained in:
vater c3d2 2023-07-10 12:14:21 +02:00 committed by Sandro Jäckel
parent 0000003775
commit 128fb86549
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 7 additions and 1 deletions

View File

@ -61,7 +61,6 @@ in
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = true;
$wgGroupPermissions['sysop']['interwiki'] = true;
$wgGroupPermissions['sysop']['userrights'] = true;
define("NS_INTERN", 100);
@ -116,6 +115,13 @@ in
$wgCaptchaClass = 'QuestyCaptcha';
$wgCaptchaQuestions[] = array( 'question' => 'How is C3D2 logo in ascii?', 'answer' => '<<</>>' );
# we are using the feature of the default extension interwiki for linking to other articles of the same domain
# https://www.mediawiki.org/wiki/Extension:Interwiki
# without loading this extension there is no page Spezial:Interwikitablle (aka Special:Interwiki) to manage the table of entries for interwiki links
wfLoadExtension( 'Interwiki' );
# all members of the sysop group should be able to manage entries for interwiki links
$wgGroupPermissions['sysop']['interwiki'] = true;
$wgEnableAPI = true;
$wgAllowUserCss = true;
$wgUseAjax = true;