In the same way that it\'s possible to serve up images with php, for use in CAPTACHAS and such, is it possible to do the same with audio files?
I\'ve tried this
Your Content-Disposition should be:
header('Content-Disposition: attachment; filename="sometrack.mp3"');
Not sure if that's the problem though. I would also recommend using readfile to output the file:
readfile($rSong);
Also, it can't hurt to use an exhaustive Content-Type header, and set the Content-Transfer-Encoding:
header("Content-Transfer-Encoding: binary");
header("Content-Type: audio/mpeg, audio/x-mpeg, audio/x-mpeg-3, audio/mpeg3");
try using This Class it supports download resume and speed limit believe me u need it as an owner of mp3 downloads website