Rename percent to wfPercent
[lhc/web/wiklou.git] / AdminSettings.sample
1 <?php
2 /**
3 * This file should be copied to AdminSettings.php, and modified
4 * to reflect local settings. It is required for the maintenance
5 * scripts which run on the command line, as an extra security
6 * measure to allow using a separate user account with higher
7 * privileges to do maintenance work.
8 *
9 * Developers: Do not check AdminSettings.php into CVS!
10 *
11 * @package MediaWiki
12 */
13
14 /*
15 * This data is used by all database maintenance scripts
16 * (see directory maintenance/). The SQL user MUST BE
17 * MANUALLY CREATED or set to an existing user with
18 * necessary permissions.
19 *
20 * This is not to be confused with sysop accounts for the
21 * wiki.
22 */
23 $wgDBadminuser = 'wikiadmin';
24 $wgDBadminpassword = 'adminpass';
25
26 /*
27 * Whether to enable the profileinfo.php script.
28 */
29 $wgEnableProfileInfo = false;
30
31 ?>