Re: More Streaming Woes....

"Bruce M. Walker" <[email protected]> Sun, 18 Aug 2002 06:09:25 -0400 (EDT)
Newsgroups gmane.comp.apache.mod-mp3
Message-ID <[email protected]>
Quoting Jon Buda <[email protected]>:
> 
> Heres an example of the code to play:
> elseif($play == "playlist"){
>   header("Content-Type: audio/mpegurl;");
>   header("Content-Disposition: attachment; filename=playlist.m3u");

I've had better luck with IE and NS if I make it:

    header("Content-Type: audio/mpegurl; file=\"playlist.m3u\"");
    header("Content-Disposition: attachment; filename=\"playlist.m3u\"");

The quotes and file= seem to trigger different browsers.

-bmw