Added default setting for $wgVectorUseSimpleSearch.
[mediawiki.git] / AdminSettings.sample
blob8b6fe99351c9842d2b9d8a3bc42464782e105067
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  */
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';
30  * Whether to enable the profileinfo.php script.
31  */
32 $wgEnableProfileInfo = false;