RE: mod_perl does not see multipart POSTs

2002-03-20 Thread Vuillemot, Ward W
Goldstand'; [EMAIL PROTECTED] : Subject: Re: mod_perl does not see multipart POSTs : : : : - Original Message - : From: Vuillemot, Ward W [EMAIL PROTECTED] : To: 'Issac Goldstand' [EMAIL PROTECTED]; : [EMAIL PROTECTED] : Sent: Tuesday, March 19, 2002 2:30

RE: mod_perl does not see multipart POSTs

2002-03-20 Thread Randy Kobes
On Wed, 20 Mar 2002, Vuillemot, Ward W wrote: I tried the code. Still nothing. I did turn On PerlWarn in httpd.conf. Upon restart I saw the following: errorlog [Wed Mar 20 07:55:19 2002] [info] master_main: Restart event signaled. Doing a graceful restart. defined(array) is deprecated

RE: mod_perl does not see multipart POSTs -- SOLVED

2002-03-20 Thread Vuillemot, Ward W
: Tuesday, March 19, 2002 1:30 PM : To: [EMAIL PROTECTED] : Subject: Re: mod_perl does not see multipart POSTs : : : Vuillemot, Ward W wrote: : : Here is the Apache config : PerlModule testUpload : Location /testUpload : SetHandler perl-script

Re: mod_perl does not see multipart POSTs -- SOLVED

2002-03-20 Thread Ernest Lergon
Vuillemot, Ward W wrote: Using the POST2GET snippet was interferring. I thought I had turned it off when trying Lergon's suggestion. I must not have. As for the actual code. . .I copied it exactly as Lergon's and it works. I know what was different... [snip] Hi Ward, hi Randy! Thank

RE: mod_perl does not see multipart POSTs -- SOLVED

2002-03-20 Thread Vuillemot, Ward W
Randy, My apologies! Thank you for the code. Ernest, Thanks for the clues! You take your namesake seriously, too. Wonderful! ;) Cheers, Ward

Re: mod_perl does not see multipart POSTs -- SOLVED

2002-03-20 Thread Stas Bekman
Vuillemot, Ward W wrote: Using the POST2GET snippet was interferring. I thought I had turned it off when trying Lergon's suggestion. I must not have. As for the actual code. . .I copied it exactly as Lergon's and it works. I know what was different, but I swear that what I had was taken

RE: mod_perl does not see multipart POSTs

2002-03-19 Thread Vuillemot, Ward W
: Cc: [EMAIL PROTECTED] : Subject: Re: mod_perl does not see multipart POSTs : : : I'm not sure I understand what you're asking... Apache, : on it's own, : does not support any internal parsing of POST data, multipart or : otherwise, so why should mod_perl

Re: mod_perl does not see multipart POSTs

2002-03-19 Thread Ernest Lergon
Vuillemot, Ward W wrote: Here is the Apache config PerlModule testUpload Location /testUpload SetHandler perl-script PerlHandler testUpload PerlSendHeader Off # limit POSTS so that they get processed properly Limit POST PerlInitHandler POST2GET /Limit /Location Hi

Re: mod_perl does not see multipart POSTs

2002-03-19 Thread Randy Kobes
- Original Message - From: Vuillemot, Ward W [EMAIL PROTECTED] To: 'Issac Goldstand' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 2:30 PM Subject: RE: mod_perl does not see multipart POSTs I simplified everything to the bare bones. Nothing is getting passed. I

Re: mod_perl does not see multipart POSTs

2002-03-18 Thread Issac Goldstand
I'm not sure I understand what you're asking... Apache, on it's own, does not support any internal parsing of POST data, multipart or otherwise, so why should mod_perl? For this, we have the Apache::Request library in mod_perl (Which is the mod_perl interface to the libapreq library for

RE: mod_perl does not see multipart POSTs

2002-03-18 Thread Vuillemot, Ward W
[mailto:[EMAIL PROTECTED]] : Sent: Monday, March 18, 2002 9:37 AM : To: Vuillemot, Ward W : Cc: [EMAIL PROTECTED] : Subject: Re: mod_perl does not see multipart POSTs : : : I'm not sure I understand what you're asking... Apache, : on it's own, : does