2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2004-09-03 22:33:01 +00:00
|
|
|
/**
|
|
|
|
|
* This file should be copied to AdminSettings.php, and modified
|
|
|
|
|
* to reflect local settings. Unlike LocalSettings.php, it is
|
|
|
|
|
* not copied to the installation directory for security reasons;
|
|
|
|
|
* it is used by the install and maintenance scripts only.
|
|
|
|
|
*
|
|
|
|
|
* Developers: Do not check AdminSettings.php into CVS!
|
|
|
|
|
*
|
|
|
|
|
* @package MediaWiki
|
|
|
|
|
*/
|
2004-01-22 04:07:45 +00:00
|
|
|
|
2004-09-03 22:33:01 +00:00
|
|
|
/*
|
|
|
|
|
* This data is used by all database maintenance scripts
|
|
|
|
|
* (see directory maintenance/). The SQL user DOES NOT NEED
|
|
|
|
|
* TO EXIST. It is created by the installation script,
|
|
|
|
|
* which will prompt you for the MySQL root password.
|
|
|
|
|
*
|
|
|
|
|
* This is not to be confused with sysop accounts for the
|
|
|
|
|
* wiki.
|
|
|
|
|
*/
|
|
|
|
|
$wgDBadminuser = 'wikiadmin';
|
|
|
|
|
$wgDBadminpassword = 'adminpass';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-09-03 22:33:01 +00:00
|
|
|
/**
|
|
|
|
|
* Define these if you want the installed files to be owned
|
|
|
|
|
* by a specific user or group for ease of maintenance. You
|
|
|
|
|
* must run the install script as root to change owners, or
|
|
|
|
|
* as a member of the group to change groups.
|
|
|
|
|
*/
|
|
|
|
|
# $wgInstallOwner = 'apache';
|
|
|
|
|
# $wgInstallGroup = 'apache';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
?>
|