No categories assigned 
Configuration
- 
			- Last edited 8 years ago by FlorianFuessl
 
- 
			
- 
					- 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)