I am trying to stream a mp3 file to SoundManager with the HTTP/1.1 Partial Content header to allow some protection to my media files and also allow users to seek to different lo
I'm pretty sure the problem you're having is with the content-range header
try this instead
header('Content-Range: bytes ' . $start . '-' . $end . '/' . $file_size);