Joshua Cantara wrote: > Hi all, I've done my searches and haven't found an answer yet, so I'm > hoping someone here can help me... > > This thread: > http://www.gossamer-threads.com/lists/modperl/modperl/58724?search_string=ICY;#58724 > > > Describes how to implement $r->assbackwards in an Apache module in order > to pass through the "ICY 200 OK" header, which is great! However, I do > my ICY streaming from a .pl not a .pm and I have yet to figure out a way > to get these headers through!
it shouldn't matter if you're using a .pm or a .pl, as long as the .pl is run through ModPerl::Registry. > > Setting "PerlOptions +ParseHeaders" in httpd.conf results in the > "malformed header from script" error, -ParseHeaders results in none of > my headers getting through (both are acting as I would expect). assbackwards suppresses header generation, so what you'll need to do is toggle the assbackwards switch and send your own set of complete headers. use telnet to see what you're missing and you should be good to go :) > > That thread is dated 2003, surely there must be a solution by now! well, the reporter said he was ok, so there is a solution out there someplace :) --Geoff