Re: [PHP] execution time

2001-07-27 Thread Plamen Slavov
You can use a standalone compiled PHP version and then You will not need a browser to execute scripts see http://www.php.net/manual/en/install.commandline.php - Original Message - From: "Pétur Björn Thorsteinsson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday 27 July 2001

Re: [PHP] execution time

2001-07-27 Thread Wagner Tomy
http://www.php.net/manual/en/function.set-time-limit.php the set_time_limit allows you to reset the max execution time.. the manual says: When called, set_time_limit() restarts the timeout counter from zero. In other words, if the timeout is the default 30 seconds, and 25 seconds into script ex

Re: [PHP] execution time

2001-07-27 Thread Alex Black
> I have a php script that runs every 30 minutes. It takes the contents of a > directory (which is constantly being updated) and dumps them into a mysql > database. Recently this directory has become increasingly large and the php > script only updates a portion of it before it stops execution. >