[PHP] Re: Recovering from a time out

2003-07-18 Thread Anthony
change PHP's timeout value in php.ini : max_execution_time = 30 ; Maximum execution time of each script, in seconds max_input_time = 60 ; Maximum amount of time each script may spend parsing request data don't know if you can have php do something like load a different script or a basic HTML

Re: [PHP] Re: Recovering from a time out

2003-07-18 Thread Curt Zirzow
Anthony [EMAIL PROTECTED] wrote: change PHP's timeout value in php.ini : max_execution_time = 30 ; Maximum execution time of each script, in seconds max_input_time = 60 ; Maximum amount of time each script may spend parsing request data don't know if you can have php do something