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
|
2005-01-12 07:28:20 +00:00
|
|
|
* to reflect local settings. It is required for the maintenance
|
|
|
|
|
* scripts which run on the command line, as an extra security
|
|
|
|
|
* measure to allow using a separate user account with higher
|
|
|
|
|
* privileges to do maintenance work.
|
2004-09-03 22:33:01 +00:00
|
|
|
*
|
2006-04-11 15:01:01 +00:00
|
|
|
* Developers: Do not check AdminSettings.php into Subversion
|
2004-09-03 22:33:01 +00:00
|
|
|
*/
|
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
|
2005-01-12 07:28:20 +00:00
|
|
|
* (see directory maintenance/). The SQL user MUST BE
|
|
|
|
|
* MANUALLY CREATED or set to an existing user with
|
|
|
|
|
* necessary permissions.
|
2004-09-03 22:33:01 +00:00
|
|
|
*
|
|
|
|
|
* This is not to be confused with sysop accounts for the
|
|
|
|
|
* wiki.
|
|
|
|
|
*/
|
|
|
|
|
$wgDBadminuser = 'wikiadmin';
|
|
|
|
|
$wgDBadminpassword = 'adminpass';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-07-03 02:22:09 +00:00
|
|
|
/*
|
|
|
|
|
* Whether to enable the profileinfo.php script.
|
|
|
|
|
*/
|
|
|
|
|
$wgEnableProfileInfo = false;
|