[PHP] max_execution_time header

2001-07-09 Thread Peter Schumacher

I'm trying to backup a huge amount of data comming from a MySQL database.

It seems that my script times out before it is done.
I'm unable to persuade my ISP to raise the max_execution_time and thought of
using redirects instead (header).

I've written a script that backs up 500 rows and then redirects to a simple
script that in turn redirects back to my main script (with an offset).

I still run into the max_execution_time!!! I thought it would be reset as I
redirect to another page.

Any help appreciated.

Regards,

Peter Schumacher



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] max_execution_time header

2001-07-09 Thread mike cullerton

on 7/9/01 8:17 AM, Peter Schumacher at [EMAIL PROTECTED] wrote:

 I still run into the max_execution_time!!! I thought it would be reset as I
 redirect to another page.

within your script

ini_set(max_execution_time, $some_bunch_of_seconds);

 -- mike cullerton



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]