-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.sample.inc.php
46 lines (39 loc) · 1.03 KB
/
conf.sample.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?
/******** Anego Website Style ********/
define('STYLE','anego');
/******** MySQL Database Connection Info ********/
// Host
define ("HOST","localhost");
// Username
define ("SQLUSER","user");
// Password
define ("SQLPASS","password");
// Databasename
define ("SQLDB","database");
/******** User accounts ********/
/* Example Syntax of user accounts, generate these with the setup.php script
* Use only lower case names!
*
* $user_accounts = Array(
* 'someuser' => 'somehash',
* 'someotheruser' => 'someotherhash',
* );
* $user_roles = Array(
* 'someuser' => Role::Admin,
* 'someotheruser' => Role::ProMod
* );
*/
/* Global Language setting (defaults to english)
* eng: English
* ger: German
* auto: Autodetect language by browser/cookie (not fully implemented yet)
*/
$cfg['interfacelanguage'] = 'eng';
$cfg['websitelanguage'] = '';
/* Edit this line, if your anego installation is in a subfolder, always with trailing slash
* e.g. /anego/
*/
$cfg['path'] = '/';
// Do not edit this
define("CONFIG_LOADED",true);
?>