upgraded to version 0.3.5
[mirrors/JukeBox.git] / example_config.php
diff --git a/example_config.php b/example_config.php
new file mode 100755 (executable)
index 0000000..302d87f
--- /dev/null
@@ -0,0 +1,31 @@
+<?php
+/*
+ * Harvie's JuKe!Box configuration file.
+ *
+ * Quick Instalation HowTo:
+ * 1.) Change $passwd and $music_dir_url!
+ * 2.) Rename to: _config.php
+ * 3.) Place your music into the $music_dir ($music_dir_url must lead to the same directory on web)
+ * 4.) create file jbx/cache.db writeable by webserver (set permissions)
+ * 5.) Refresh search database using $cache_passwd on search page
+ */
+//Config-basic
+$title =                'Harvie\'s&nbsp;JuKe!Box'; //Title of jukebox
+$music_dir =            './music'; //Local path to directory with music
+$music_dir_url =        'http://your-server.net/jukebox/music'; //URL path to the same directory CHANGE IT!
+$cache_passwd =         'renew123'; //You need this passwd to refresh search cache CHANGE IT!
+//Login
+$realm =               'music';//Banner
+$user =                        'music';//User
+$passwd =              'Default-Secr3t_PaSsw0rd'; //Password CHANGE IT!
+$require_login =       true;
+//More search engines
+/*
+$search_engines = array_merge($search_engines, array(
+        'Harvie\'s blog!'                   => 'http://blog.harvie.cz/?s='
+));
+*/
+//Bonuses
+if(isset($bonus_dir) && is_dir($bonus_dir)) {
+       $css_file =             $bonus_dir.'/themes/default/jukebox.css'; //CSS (Design/Theme)
+}
This page took 0.134631 seconds and 4 git commands to generate.