Re: [PHP] asynchronous launch of a script

2011-06-28 Thread David Harkness
On Tue, Jun 28, 2011 at 1:02 PM, Stuart Dallas wrote: > While this will work, I would caution against doing this, especially when > using Apache as the web server. . . . > > Forking an HTTP request handler can lead to some very unwelcome > side-effects. I'd urge you not to do this. It may appear

Re: [PHP] asynchronous launch of a script

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 8:16 PM, David Harkness wrote: > On Sun, Jun 26, 2011 at 7:42 PM, Tamara Temple >wrote: > > > How do I launch a php script from another running php script > > asynchronously? > > > > You can perform the long-running job in the same process that handles the > request by sen

Re: [PHP] asynchronous launch of a script

2011-06-28 Thread David Harkness
On Sun, Jun 26, 2011 at 7:42 PM, Tamara Temple wrote: > How do I launch a php script from another running php script > asynchronously? > You can perform the long-running job in the same process that handles the request by sending appropriate headers. We use this to run reports that take ten minut

Re: [PHP] asynchronous launch of a script

2011-06-27 Thread Richard Quadling
On 27 June 2011 03:42, Tamara Temple wrote: > How do I launch a php script from another running php script asynchronously? I'm a windows user. One of the things I wanted to to was to create non-blocking process which I could communicate with using PHP. I use pecl/wincache to allow me to read/wri

[PHP] asynchronous launch of a script

2011-06-26 Thread Tamara Temple
How do I launch a php script from another running php script asynchronously? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php