Compare commits
4 commits
f98ef04d7b
...
23ddb3ba11
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
23ddb3ba11 | ||
|
|
22cbd05db5 | ||
|
|
0ee284913e | ||
|
|
f016a6d3bb |
1 changed files with 18 additions and 3 deletions
|
|
@ -22,7 +22,11 @@ $_SERVER['SERVER_PORT'] = 443;
|
||||||
$wgSitename = "Technologia Incognita";
|
$wgSitename = "Technologia Incognita";
|
||||||
$wgMetaNamespace = "Technologia_Incognita";
|
$wgMetaNamespace = "Technologia_Incognita";
|
||||||
$wgServer = "https://wiki.techinc.nl";
|
$wgServer = "https://wiki.techinc.nl";
|
||||||
$wgLogo = "https://wiki.techinc.nl/images/c/cd/Techinc_logo.png";
|
#$wgLogo = "https://wiki.techinc.nl/images/c/cd/Techinc_logo.png";
|
||||||
|
$wgLogos = [
|
||||||
|
'svg' => "https://wiki.techinc.nl/images/6/6a/TechInc-logo-no-text.svg", // path to svg version
|
||||||
|
'icon' => "https://wiki.techinc.nl/images/6/6a/TechInc-logo-no-text.svg", // path to svg version
|
||||||
|
];
|
||||||
$wgLocaltimezone = "Europe/Amsterdam";
|
$wgLocaltimezone = "Europe/Amsterdam";
|
||||||
|
|
||||||
## Database settings
|
## Database settings
|
||||||
|
|
@ -76,7 +80,7 @@ $wgSVGConverter = 'ImagickExt';
|
||||||
$wgSVGNativeRendering = true;
|
$wgSVGNativeRendering = true;
|
||||||
|
|
||||||
$wgDefaultSkin = "vector";
|
$wgDefaultSkin = "vector";
|
||||||
$wgSkipSkins = array( "vector-2022" );
|
#$wgSkipSkins = array( "vector-2022" );
|
||||||
wfLoadSkin( 'Vector' );
|
wfLoadSkin( 'Vector' );
|
||||||
|
|
||||||
######################## END OF CUSTOMIZABLE AREA #############################
|
######################## END OF CUSTOMIZABLE AREA #############################
|
||||||
|
|
@ -232,7 +236,8 @@ $wgImplicitGroups[] = 'emailconfirmed';
|
||||||
# Finally, set it to true for the desired group.
|
# Finally, set it to true for the desired group.
|
||||||
$wgGroupPermissions['emailconfirmed']['edit'] = true;
|
$wgGroupPermissions['emailconfirmed']['edit'] = true;
|
||||||
|
|
||||||
#$wgReadOnly = 'A backup of the TechInc wiki is currently being made. The side is therefore in read-only mode. Check back in a bit.';
|
# This is uncommented whenever a backup is running
|
||||||
|
#$wgReadOnly = 'A backup of the TechInc wiki is currently being made. The site is therefore in read-only mode. Check back in a bit.';
|
||||||
#$wgMessageCacheType = $wgMainCacheType = $wgParserCacheType = $wgSessionCacheType = CACHE_NONE;
|
#$wgMessageCacheType = $wgMainCacheType = $wgParserCacheType = $wgSessionCacheType = CACHE_NONE;
|
||||||
#$wgLocalisationCacheConf['storeClass'] = 'LCStoreNull';
|
#$wgLocalisationCacheConf['storeClass'] = 'LCStoreNull';
|
||||||
#$wgIgnoreImageErrors = true;
|
#$wgIgnoreImageErrors = true;
|
||||||
|
|
@ -241,4 +246,14 @@ $wgHeadScriptCode = <<<'START_END_MARKER'
|
||||||
<link href="spacestate.php" rel="stylesheet" />
|
<link href="spacestate.php" rel="stylesheet" />
|
||||||
START_END_MARKER;
|
START_END_MARKER;
|
||||||
|
|
||||||
|
// Remove all talk pages
|
||||||
|
$wgNamespaceProtection[NS_TALK] = ['everyone'];
|
||||||
|
$wgNamespaceProtection[NS_USER_TALK] = ['everyone'];
|
||||||
|
$wgNamespaceProtection[NS_PROJECT_TALK] = ['everyone'];
|
||||||
|
$wgNamespaceProtection[NS_FILE_TALK] = ['everyone'];
|
||||||
|
$wgNamespaceProtection[NS_MEDIAWIKI_TALK] = ['everyone'];
|
||||||
|
$wgNamespaceProtection[NS_TEMPLATE_TALK] = ['everyone'];
|
||||||
|
$wgNamespaceProtection[NS_HELP_TALK] = ['everyone'];
|
||||||
|
$wgNamespaceProtection[NS_CATEGORY_TALK] = ['everyone'];
|
||||||
|
|
||||||
$wgMemoryLimit = "64M";
|
$wgMemoryLimit = "64M";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue