Re: [PHP] asynchronous launch of a script

2011-06-28 Thread David Harkness
On Sun, Jun 26, 2011 at 7:42 PM, Tamara Temple tamouse.li...@gmail.comwrote: 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

Re: [PHP] asynchronous launch of a script

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 8:16 PM, David Harkness davi...@highgearmedia.comwrote: On Sun, Jun 26, 2011 at 7:42 PM, Tamara Temple tamouse.li...@gmail.com wrote: How do I launch a php script from another running php script asynchronously? You can perform the long-running job in the same

Re: [PHP] asynchronous launch of a script

2011-06-28 Thread David Harkness
On Tue, Jun 28, 2011 at 1:02 PM, Stuart Dallas stu...@3ft9.com 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

Re: [PHP] asynchronous launch of a script

2011-06-27 Thread Richard Quadling
On 27 June 2011 03:42, Tamara Temple tamouse.li...@gmail.com 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

[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