RE: [PHP] Forking a search - pcntl

2006-04-20 Thread Richard Lynch
On Wed, April 19, 2006 3:17 am, James Nunnerley wrote: > Thanks for everyone's replies - but I'm a little uncertain as to what > the > reasons for not running the pcntl functions under the web browser are > - is > it down to security? I could be wrong, but I believe the correct response is: No, i

Re: [PHP] Forking a search - pcntl

2006-04-19 Thread Jochem Maas
he more you delve in the underbelly of process control/forking/etc the more you'll understand why the above advice is sound :-) cheers -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: 18 April 2006 22:52 To: James Nunnerley Cc: php-general@lists.php.net Sub

RE: [PHP] Forking a search - pcntl

2006-04-19 Thread James Nunnerley
Nunnerley Cc: php-general@lists.php.net Subject: Re: [PHP] Forking a search - pcntl On Tue, April 18, 2006 5:21 am, James Nunnerley wrote: > What we'd like to do is run the actual search query in the background > (i.e. > fork) while the viewable page shows a nice scrollie banner et

Re: [PHP] Forking a search - pcntl

2006-04-18 Thread Richard Lynch
On Tue, April 18, 2006 5:21 am, James Nunnerley wrote: > What we'd like to do is run the actual search query in the background > (i.e. > fork) while the viewable page shows a nice scrollie banner etc! fork is not the only solution for this, thank [insert deity here] > Due to various problems with

Re: [PHP] Forking a search - pcntl

2006-04-18 Thread chris smith
On 4/18/06, Stut <[EMAIL PROTECTED]> wrote: > James Nunnerley wrote: > > >I'm creating a search function as part of our webmail frontend, however I'm > >having big problems with timeout etc. > > > >What we'd like to do is run the actual search query in the background (i.e. > >fork) while the viewab

Re: [PHP] Forking a search - pcntl

2006-04-18 Thread Stut
James Nunnerley wrote: I'm creating a search function as part of our webmail frontend, however I'm having big problems with timeout etc. What we'd like to do is run the actual search query in the background (i.e. fork) while the viewable page shows a nice scrollie banner etc! Due to various pr