Fixed bug caused in r52944 - where the inclusion of csshover.htc was lost in the...
[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 Subversion
10 */
11
12 /*
13 * This data is used by all database maintenance scripts
14 * (see directory maintenance/). The SQL user MUST BE
15 * MANUALLY CREATED or set to an existing user with
16 * necessary permissions.
17 *
18 * This is not to be confused with sysop accounts for the
19 * wiki.
20 *
21 * NOTE: for PostgreSQL this should be set to the same user and
22 * password as the web user, that is, the same as $wgDBuser and
23 * $wgDBpassword in LocalSettings.php. This is necessary to
24 * ensure that the owner for new tables is set correctly.
25 */
26 $wgDBadminuser = 'wikiadmin';
27 $wgDBadminpassword = 'adminpass';
28
29 /*
30 * Whether to enable the profileinfo.php script.
31 */
32 $wgEnableProfileInfo = false;