Re: content-disposition not recognized

[prev] [thread] [next] [Date index for 2004/11/19]

From: Stas Bekman
Subject: Re: content-disposition not recognized
Date: 22:29 on 19 Nov 2004
Micah Johnson wrote:
>>>and the script prints headers like this:
>>>
>>>    print "Content-type: text/plain\n";
>>>    print "Content-Disposition: attachment;
>>>filename=results.xml\n\n";
>>>
>>>The resulting file reports a server error 500,
>>>premature end of script headers and the
>>>content-disposition line is displayed, so it looks
>>>like it is not being treated as a header.
>>
>>Try to add:
>>
>>   local $| = 0;
>>
>>before sending headers, or send the header at once:
>>
>>print q[Content-type: text/plain\n] .
>>q[Content-Disposition:
>>attachment;filename=results.xml\n\n].
> 
> 
> Thanks!
> The local $| = 0 trick works.  Would you mind
> explaining what is happening?  FYI, putting the
> headers on one print doesn't seem to fix it.

As soon as you send some content to the client, Apache sends the headers 
immediately (since there is no send_http_header() in Apache 2.0). So when 
you do:

print q[Content-type: text/plain\n];

Apache sends httpd headers right away, before it sees extra headers.

By making the output buffered $! (which is the case by default) you delay 
sending the data out, till the 8K buffer is filled (or the request is 
completed). But it's probably a better practice to send the header at once 
as I've suggested, rather than relying on the buffering feature.

        -- 
        __________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@xxxxxx.xxx http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

(message missing)

content-disposition not recognized
Micah Johnson 14:49 on 19 Nov 2004

Re: content-disposition not recognized
Stas Bekman 20:27 on 19 Nov 2004

Re: content-disposition not recognized
Micah Johnson 22:25 on 19 Nov 2004

Re: content-disposition not recognized
Stas Bekman 22:29 on 19 Nov 2004

Re: content-disposition not recognized
Stas Bekman 22:31 on 19 Nov 2004

Re: content-disposition not recognized
Micah Johnson 22:35 on 19 Nov 2004

Re: content-disposition not recognized
Stas Bekman 22:38 on 19 Nov 2004

Re: content-disposition not recognized
Stas Bekman 00:08 on 20 Nov 2004

Generated at 11:26 on 21 Dec 2004 by mariachi v0.52