aboutsummaryrefslogtreecommitdiffstats
path: root/settings.php.example
blob: 4671931a8d85622409f497b1be03f03ca6c14a23 (plain) (blame)
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
<?php
//Ordinary user login credentials:
define('USER_USERNAME', 'apple');
define('USER_PASSWORD', 'sauce');

//Database details and credentials:
define('DATABASE_NAME', 'zx2c4musicdb');
define('DATABASE_SERVER', 'localhost');
define('DATABASE_USERNAME', 'musicuser');
define('DATABASE_PASSWORD', 'i<3musics');

//Music directory
//This should either be an absolute path or relative to the location of the ZX2C4 Music php files.
define('MUSIC_DIRECTORY', '/home/myuser/music-files/');

//Title of music site
define('SITE_NAME', 'ZX2C4 Music');
//Beta status line
define('SITE_BETA', '(beta)');
//Default search query
define('SITE_DEFAULT_SEARCH', 'Wayne Shorter');

//Adding items to the excludeList array will prevent the scanner from adding songs whose file names start with any of the entries.
$excludeList = array(
//".directory",
//"secret songs",
//"my music/secret songs"
);
?>