Hello,

You can use set_time_limit(); at the top of your script to set the max time
limit.  set_time_limit(0); will let it go forever, as I do not recommend
this until you test the script and know the it doesn't have an endless loop
or what not.

example:
<?

set_time_limit(0);
echo "test";

?>

-----Original Message-----
From: Gilles-Eric Descamps
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 29, 2001 1:18 PM
To: [EMAIL PROTECTED]
Cc: 'Clayton Dukes'
Subject: RE: [PHP] problem uploading big (50MB) file



  Hi Clayton,

  As I was writing, I confirmed every variable change
by a phpinfo() page.

  Yes, to enforce changes in the php.ini file,
I stop and start the whole apache...


> -----Original Message-----
> From: Clayton Dukes [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 29, 2001 1:18 PM
> To: Gilles-Eric Descamps; [EMAIL PROTECTED]
> Subject: Re: [PHP] problem uploading big (50MB) file
>
>
> This is set by max_execution_time, did you restart apache to
> re-read your
> php.ini file?

--
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]


-- 
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]

Reply via email to