Re: bug in mod_perl-1.24 & request->args & request->content

2001-01-25 Thread Doug MacEachern
On Mon, 22 Jan 2001, Marc Lehmann wrote: > Apache.pm documents two methods "args" and "content" that should return > argument => value pairs (when called appropriately). In fact, args is > implemented as: > > return map { Apache::unescape_url_info($_) } split /[=&;]/, $string, -1; > > H

Re: Bug in mod_perl

2000-10-13 Thread Doug MacEachern
On Mon, 9 Oct 2000, Dave Rolsky wrote: > I'm using mod_perl 1.24/Apache 1.3.12/Perl 5.00503 and find that I receive > no output after the \0. Is this a mod_perl or Apache bug? Or is it a > client bug (using Netscape 4.75) or is it the expected behavior. looks ok to me: % telnet localhost 852

Re: Bug in mod_perl

2000-10-09 Thread Ken Williams
[EMAIL PROTECTED] (Greg Williams) wrote: >>I'm using mod_perl 1.24/Apache 1.3.12/Perl 5.00503 and find that I receive >>no output after the \0. Is this a mod_perl or Apache bug? Or is it a >>client bug (using Netscape 4.75) or is it the expected behavior. > >It would be expected, I'd assume. pe

Re: Bug in mod_perl

2000-10-09 Thread Greg Williams
>I'm using mod_perl 1.24/Apache 1.3.12/Perl 5.00503 and find that I receive >no output after the \0. Is this a mod_perl or Apache bug? Or is it a >client bug (using Netscape 4.75) or is it the expected behavior. It would be expected, I'd assume. perl5-porters discussed this back in January wh

Re: Bug in mod_perl

2000-10-09 Thread Tom Brown
Interesting, the Mason bug report I just filed is obviously mis-filed. Apache::Registry scripts suffer the same behaviour. On Mon, 9 Oct 2000, Dave Rolsky wrote: > Try the following handler: > > package Foo; > > use Apache::Request; > > sub handler > { > my $r = shift; > > my (@va

Re: Bug? in mod_perl when POST request yields REDIRECT

2000-09-27 Thread Doug MacEachern
take 2 on that patch, this one adds a check so ap_setup_client_block() is only called once. with this part of the fix you can call $r->content multiple times without hanging: my $data = $r->content; $data = $r->content; however, any calls to $r->content after the first will return undef. (unles

Re: Bug? in mod_perl when POST request yields REDIRECT

2000-09-27 Thread Doug MacEachern
On Wed, 6 Sep 2000, Reif Peter wrote: > I am using a self written mod_perl module that does proxy requests. It acts > as content handler and fetches the requestet documents via LWP::UserAgent. > The program works fine but when the request is a POST request and the > response is a redirection (301

Re: Bug in mod_perl makefile?

2000-02-03 Thread Stas Bekman
On Thu, 3 Feb 2000, Martin A. Langhoff wrote: > Hi, > > I've just got my apache/modperl setup to work. This little nastie > took me 2 days to find. > > In my /usr/src directory, I had: > - apache_1.3.3 [dir] > - apache_1.3.9 [dir] > - mod_perl-1.21 [dir] > >