"Gerald Richter" <[EMAIL PROTECTED]> writes:

> [32075]ENV: CONTENT_LENGTH=87
> ....
> [32075]ENV: QUERY_STRING=missing=name_first%2Cname_last
> 
> When Content Length and query_string are set, Embperl tries to read the
> posted form data from stdin and ignores the query_string. I don't know why
> CONTENT_LENGTH is set, but the easiest way to fix this, is to add a
> 
> $r -> header_in ('Content-Length', 0) ;
> 
> before you do the subrequest. Maybe you also need a
> 
> $ENV{CONTENT_LENGTH} = 0 ;
> 
> but I don't think so.

Thanks, that was the problem.  

CONTENT_LENGTH was set because I was POSTing data, parsing it with
Apache::Request, and passing it via query string during an internal
redirect.  Thanks again for the help!


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to