Okay, here is what your site is actually sending when it sends an m3u playlist down:

#EXTM3U
#EXTINF:253,Danzig - Dominion
http://mp3.everonn.net/v2/getfile.php?fid=3230&playlist=1

And then the mp3 file is sent (when requested) like this:

HTTP/1.1 200 OK
Server: Microsoft-IIS/5.1
Date: Wed, 30 Jan 2002 23:16:51 GMT
Content-Type: application/octet-stream
X-Powered-By: PHP/4.1.1
Content-Disposition: attachment; filename=Danzig - Dominion
Content-Length: 4049316

............................................
...........................................
(the dots represent the actual mp3 file data)

So, first off.. your app is not using the correct mime type (content-type) for the mp3 data: should be set to audio/mpeg or audio/x-mpeg instead of application/octet-stream.

And the header (the #EXT lines) for the m3u looks rather peculiar.. maybe that's an early form of HTTP/1.0 headers or something.. I'm not familiar with it (but then I'm just learning HTTP on-the-fly here).

Can anyone enlighten me?

thanks


Edited by mlord (30/01/2002 16:23)