in reply to Re: Re: RE: CGI Forcing client disconnect
in thread RE: CGI Forcing client disconnect

OK, so how about you queue the request (append to a text file) and send a '200 OK' header.

Then set up a cron job that runs every X minutes (5? 10? 30?).

This is how I'd do it. cron activated script:

This way, the request data file doesn't get locked for long :)

cLive ;-)

Replies are listed 'Best First'.
Re: RE: CGI Forcing client disconnect
by shotgunefx (Parson) on May 15, 2001 at 04:32 UTC
    That's what we do for some of the requests but the problem I am having currently is that we need to pipe some of these through an encryption program such as GPG before writing to disk as they contain sensitive information.

    BTW, Thanks for the help!