Re: How to close connect and continue processing?

2000-09-14 Thread Matt Sergeant
On Thu, 14 Sep 2000, Vladislav Safronov wrote: Hi, After user request my script should say that the request is accepted and continue processing user data (it takes a time) so I want to tell the browser that all data is sent. I searched mod_perl guide but I didn't find such code snippet.

Re: How to close connect and continue processing?

2000-09-14 Thread Matt Sergeant
On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Vladislav Safronov wrote: Hi, After user request my script should say that the request is accepted and continue processing user data (it takes a time) so I want to tell the browser that all data is sent. I searched

Re: How to close connect and continue processing?

2000-09-14 Thread Stas Bekman
On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Vladislav Safronov wrote: Hi, After user request my script should say that the request is accepted and continue processing user data (it takes a time) so I want to tell

RE: How to close connect and continue processing?

2000-09-14 Thread Vladislav Safronov
I read the guide and I think the best is just add "" :) (how could I forget it!) .. system("myprog la la "); print "/html"; # end On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Vladislav

RE: How to close connect and continue processing?

2000-09-14 Thread Stas Bekman
On Thu, 14 Sep 2000, Vladislav Safronov wrote: I read the guide and I think the best is just add "" :) (how could I forget it!) .. system("myprog la la "); print "/html"; # end True, but what happens if your program tries to print something. You've all in/out/err

RE: How to close connect and continue processing?

2000-09-14 Thread Vladislav Safronov
On Thu, 14 Sep 2000, Vladislav Safronov wrote: I read the guide and I think the best is just add "" :) (how could I forget it!) .. system("myprog la la "); print "/html"; # end True, but what happens if your program tries to print something. You've all