Re: Forking process

2002-10-09 Thread Perrin Harkins
Aaron Johnson wrote: > So in a nutshell > > - Create a temp (flag) file > - Generate and send the HTML to the browser which includes a meta > refresh > - Add the temp file to their session data (or something similar) > - Exec a process and send the temp file name to it > - On page refresh look to

Re: Forking process

2002-10-09 Thread Aaron Johnson
On Wed, 2002-10-09 at 05:25, Anton Permyakov wrote: > Hi all, > > I need to start process, which would get big amount of data from another > server into my DataBase, > and while it will do it, my browser should show me progress-bar on this data > extraction. > > I have mod_perl based web-server,

Re: Forking process

2002-10-09 Thread Rafiq Ismail
On Wed, 9 Oct 2002, Anton Permyakov wrote: > Hi all, > > I need to start process, which would get big amount of data from another > server into my DataBase, > and while it will do it, my browser should show me progress-bar on this data > extraction. > I have mod_perl based web-server, so, i shoul

Forking process

2002-10-09 Thread Anton Permyakov
Hi all, I need to start process, which would get big amount of data from another server into my DataBase, and while it will do it, my browser should show me progress-bar on this data extraction. I have mod_perl based web-server, so, i should not use fork(), as explained in Mod_perl docs. But als