POST and GET and getting multiple unsynced requests

2001-10-07 Thread Mark Maunder
Hi all, I've written a web app as a single mod_perl handler. I started writing my forms so they would do a POST and GET simultaneously. I did this by making the form method=POST action="/job_details?job=65" for example. Now I notice that IE and Netscape do a POST and GET request every time the f

Re: piece of code in mod_perl guide

2001-10-07 Thread pascal barbedor
> > > > > [ ] > > config.pm file > > - > > package AFPA::Evolif::Config ; > > > > use XML::LibXML () ; > > use XML::LibXSLT () ; > > use XML::XPath () ; > > use XML::Simple () ; > > use DBI () ; > [ ... ] > > Hi, > Could it be that XML::XPath do

Re: how to catch a killed task?

2001-10-07 Thread Perrin Harkins
> it just killed the task at soft limit without calling "cleanup". what is > wrong? I believe the limiting done by BSD::Resource is pretty harsh and may actually be at the kernel level. I don't think you can catch the signal and deal with it yourself. What you should do is use Apache::SizeLimit

Re: piece of code in mod_perl guide

2001-10-07 Thread Randy Kobes
- Original Message - From: "pascal barbedor" <[EMAIL PROTECTED]> To: "Stas Bekman" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, October 07, 2001 12:03 PM Subject: Re: piece of code in mod_perl guide > > - Original Message - > From: "Stas Bekman" <[EMAIL PROTECTED]> >

Re: piece of code in mod_perl guide

2001-10-07 Thread pascal barbedor
- Original Message - From: "Stas Bekman" <[EMAIL PROTECTED]> To: "pascal barbedor" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, October 07, 2001 2:22 PM Subject: Re: piece of code in mod_perl guide > > > > > > > > I have located that if i change $MODIFIED{$file} = -M _

Apache::Request UPLOAD_HOOK

2001-10-07 Thread Issac Goldstand
The documentation on how to use this feature is a bit sketchy... Can anyone explain:   1) What the variables passed to the callback function are (looks like the Apache::Upload object is the first, but what's been filled in there when the hook gets called? The second looks like the current bu

Re: how to catch a killed task?

2001-10-07 Thread Stas Bekman
Christoph Bergmann wrote: > hi... > > i use BSD::Resource to limit the ressources of the apache tasks. this > works fine but now i want to clean up afterwards but i don't know how to > catch a killed task... here is what i tried with signals: > > my entries in httpd.conf: > > PerlModule Apache

Re: piece of code in mod_perl guide

2001-10-07 Thread Stas Bekman
pascal barbedor wrote: > hello, > > > > I am reading mod_perl guide and i had a problem with a piece of code in > chapter 9.7.4.2 about > > reloading configuration files. this is version jan 2001 but i have > checked in the last one the piece of code is the same. > > > > when running t