Re: Dealing with apache timeout in Perl

2013-09-04 Thread Michael Brader
If you don't have control of the web server you're going to have to get creative. Instead of returning the zip file from the page that processes the request, you could: * ok - Fork a process to build the zip and place it in a location specific to the user or their session then return a page wi

Re: Dealing with apache timeout in Perl

2013-09-04 Thread Chankey Pathak
Sorry I can't do that. Isn't there any other way? On Wed, Sep 4, 2013 at 9:48 PM, jbiskofski wrote: > You need to fix this in Apache not in your web-app. The setting is called > TimeOut in your httpd.conf - this is the number of seconds Apache will wait > before sending a timeout error and endi

Re: Dealing with apache timeout in Perl

2013-09-04 Thread jbiskofski
You need to fix this in Apache not in your web-app. The setting is called TimeOut in your httpd.conf - this is the number of seconds Apache will wait before sending a timeout error and ending the request. - Jose from Mexico. On Wed, Sep 4, 2013 at 4:49 AM, Chankey Pathak wrote: > In my web-app