diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-14 23:57:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-14 23:57:21 +0000 |
commit | 7db599b70d03cc288fcf499bebd9afb2485c930d (patch) | |
tree | 556e85f9baf10f2b1e845eec9cc098f22d2115cd /config/ampache.cfg.php.dist | |
parent | fed2041c7b15e30fd126d6b1290ba255d3ec5d1d (diff) | |
download | ampache-7db599b70d03cc288fcf499bebd9afb2485c930d.tar.gz ampache-7db599b70d03cc288fcf499bebd9afb2485c930d.tar.bz2 ampache-7db599b70d03cc288fcf499bebd9afb2485c930d.zip |
new vainfo which should solve the ogg with id3 tags issue and potentially break other things yeah!
Diffstat (limited to 'config/ampache.cfg.php.dist')
-rw-r--r-- | config/ampache.cfg.php.dist | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index 4a80082b..12a0cd16 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -50,12 +50,6 @@ local_length = 900 # DEAFULT: 900 remember_length = 900 -# This is the DOMAIN for the cookie that stores your session key -# this must be set to the domain of your host or you will not be -# able to log in make sure you including the leading . -# DEFAULT: "" -#sess_domain = .yourwebsite.com - # Name of the Session/Cookie that will sent to the browser # default should be fine # DEFAULT: ampache @@ -112,14 +106,16 @@ require_session = "true" # VALUES: any whole number (in bytes per second) #throttle_download = 10 -# This sets which ID3 tag takes precedence. -# we've found for those of you who don't have -# good v2 tags it's sometimes nice to keep the v1 -# until you've fixed v2 -# POSSIBLE VALUES: id3v1 id3v2 +# This determines the tag order for all cataloged +# music. If none of the listed tags are found then +# ampache will default to the first tag format +# that was found. +# POSSIBLE VALUES: id3v1 id3v2 file vorbiscomment +# quicktime ape # DEFAULT: id3v2,id3v1 -id3tag_order = "id3v2" -id3tag_order = "id3v1" +tag_order = "id3v2" +tag_order = "id3v1" +tag_order = "file" # Un comment if don't want ampache to follow symlinks # DEFAULT: false @@ -240,7 +236,7 @@ debug_level = 5 # this will only happen if debug is turned on. Do not # include trailing slash. You will need to make sure that # your HTTP server has write access to the specified directory -# DEFAULT: /var/log/ampache +# DEFAULT: NULL #log_path = "/var/log/ampache" # Max Upload Size |