[PHP-DB] CURL and process not finishing

2007-01-05 Thread john
I am using CURL to check pages outside my site on the internet for some text, then I email someone on my database who supposedly looks after the site. The script creates a process that does not terminate. It is running on a scheduled cronjob so eventually my site has over the maximum of 20 pr

Re: [PHP-DB] CURL and process not finishing

2007-01-05 Thread chris smith
On 1/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I am using CURL to check pages outside my site on the internet for some text, then I email someone on my database who supposedly looks after the site. The script creates a process that does not terminate. It is running on a scheduled cronj

Re: [PHP-DB] CURL and process not finishing

2007-01-06 Thread john
- Original Message - From: "chris smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: Sent: Friday, January 05, 2007 12:08 PM Subject: Re: [PHP-DB] CURL and process not finishing On 1/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I am using CU

Re: [PHP-DB] CURL and process not finishing

2007-01-06 Thread Niel Archer
Hi Are you running this as CLI or from your web-server? If the latter, use phpinfo() and check the max_execution_time isn't causing you problems. Niel -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] CURL and process not finishing

2007-01-07 Thread Chris
[EMAIL PROTECTED] wrote: - Original Message - From: "chris smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: Sent: Friday, January 05, 2007 12:08 PM Subject: Re: [PHP-DB] CURL and process not finishing On 1/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]>

Re: [PHP-DB] CURL and process not finishing

2007-01-08 Thread ioannes
It is on a shared server, max_exec_time is 3000, ie 30 seconds, which yes is probably being exceeded. However, having set the CURL_CONNECTION_TIMEOUT thingy it worked a lot better, and the page kept working long after 30 seconds had expired, leaving me with the question: what does max_execution_t

Re: [PHP-DB] CURL and process not finishing

2007-01-09 Thread john
- Original Message - From: "chris smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: Sent: Friday, January 05, 2007 12:08 PM Subject: Re: [PHP-DB] CURL and process not finishing > On 1/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> I am

Re: [PHP-DB] CURL and process not finishing

2007-01-09 Thread niel
Hi Are you running this as CLI or from your web-server? If the latter, use phpinfo() and check the max_execution_time isn't causing you problems. Niel -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php ***

Re: [PHP-DB] CURL and process not finishing

2007-01-09 Thread dmagick
[EMAIL PROTECTED] wrote: > - Original Message - From: "chris smith" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: > Sent: Friday, January 05, 2007 12:08 PM > Subject: Re: [PHP-DB] CURL and process not finishing > > >> On 1/5/07, [

Re: [PHP-DB] CURL and process not finishing

2007-01-09 Thread ioannes
It is on a shared server, max_exec_time is 3000, ie 30 seconds, which yes is probably being exceeded. However, having set the CURL_CONNECTION_TIMEOUT thingy it worked a lot better, and the page kept working long after 30 seconds had expired, leaving me with the question: what does max_execution_ti

Re: [PHP-DB] CURL and process not finishing

2007-01-09 Thread Niel Archer
Hi > leaving me with the question: what does > max_execution_time relate to? is it more like a maximum time without > activity. max_execution_time is the time php gets to execute code. From the documentation: "The maximum execution time is not affected by system calls, stream operations etc. P