33 lines
842 B
PHP
33 lines
842 B
PHP
<?php
|
|
|
|
define('DBHOST', 'localhost');
|
|
define('DBUSER', 'root');
|
|
define('DBPASS', '');
|
|
define('DBNAME', 'musicnew');
|
|
|
|
define('ENABLELEDBUTTONS', false);
|
|
|
|
define('SONGSPERSURPRISE', 10);
|
|
define('SEARCHLIMIT', 50);
|
|
|
|
// LOCALNETWORK can be a partial (for a subnet) or a full IP address.
|
|
// When RESTRICTQUEUES is true, only change requests from the listed
|
|
// address/scope will be accepted.
|
|
define('LOCALNETWORK', '192.168.1.');
|
|
define('RESTRICTQUEUES', false);
|
|
|
|
/* ---------------------- Below here be dragons ---------------------- */
|
|
|
|
define('ALBUMSTABLE', 'albums');
|
|
define('INSTANTQTABLE', 'instantq');
|
|
define('QUEUESTABLE', 'queues');
|
|
define('RECENTSTABLE', 'recently');
|
|
define('SONGSTABLE', 'songs');
|
|
define('QUEUECONTENTSTABLE', 'queuecontents');
|
|
define('SETTINGSTABLE', 'settings');
|
|
|
|
define('MAXVOLUME', 28);
|
|
define('MINVOLUME', 0);
|
|
|
|
?>
|