You are viewing an old version of this page. Return to the latest version.
Version of 09:24, 6 December 2016 by Schnaks
No categories assigned
Configuration
-
- Last edited 7 years ago by system user
-
-
- No status information
All changes have to be made in LocalSettings.php!
Contents
Activate upload
$wgEnableUploads = true;
Activate file: protocol
$wgUrlProtocols[] = 'file://';
Set default settings
Set default timezone
This example is for Europe/Berlin!
# Set default time zone offset for new users $wgLocalTZoffset = date("Z") / 60; # Use this time zone in signatures $wgLocaltimezone = 'Europe/Berlin'; # Set default time zone offset for new users $wgDefaultUserOptions['timecorrection'] = 'ZoneInfo|' . (date("I") ? 120 : 60) . '|Europe/Berlin';
Enable subpages in main namespace
$wgNamespacesWithSubpages[NS_MAIN] = true;
Open external links in new window
$wgExternalLinkTarget = '_blank';
If you still have questions take a look a this FAQ (German only at the moment)