could you tell me what it's saying in your log/proxy.log file as well?
Are messages even making it to the log file when you tail -f log/
proxy.log? The cleanest way to set perms on linux is acls:
http://wiki.debian.org/Permissions#Access Control Lists in Linux
Access Control Lists in Linux
follow the steps to install acls
then you'd type like
setfacl -m u:www-user:7 /path/to/music
setfacl -d -m u:www-user:7 /path/to/music
where www-user is the name of your apache user. That should
recursively add your www-user to the ACL. I'd like to see what solves
that problem as I haven't had many users have Streeme working and then
suddenly have it stop due to permissions. Something else may be afoot,
so make sure to check your logs and the desperate measures section in
the guide. You might also try copying a song or two to another
directory and see if it works there - just in case app armor,
http://en.wikipedia.org/wiki/AppArmor, or some other system watchdog
app is blocking access to the files from being read by Apache.
-Rich