Re: [PHP] max_execution_time

2003-06-17 Thread Yann Larrivee
Larrivee" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, June 17, 2003 6:18 AM > Subject: [PHP] max_execution_time > > > > Hi, i made a major programing mistake this mornning. It probably helped > > me to figure out a bug in PHP 5. But i w

[PHP] max_execution_time

2003-06-17 Thread Yann Larrivee
Hi, i made a major programing mistake this mornning. It probably helped me to figure out a bug in PHP 5. But i would like to confirme with more people... class MyClass{ public MylClass(){ $this->MyFunc(); } private MyFunc(){ $this->MyFunc();

Re: [PHP] max_execution_time and set_time_limit() problem.

2003-03-05 Thread Marek Kilimajer
This should not have anything with time limit, your php script is executed after the upload finishes, you should check max_upload_size and max_post_size (max_upload_size < max_post_size) Eric Wood wrote: Even set_time_limit(0) does extend the timeout. Always a 30 second timeout. Any other idea

Re: [PHP] max_execution_time and set_time_limit() problem.

2003-03-04 Thread Daniel Silva
I have a similar problem. I made a multiple file upload script and when the size is too big, PHP seems to ignore it, even though the files are well inside the max_upload_size... Are you sure that you aren't actually entering an infinite-loop or something? It seems odd... I can't think of nothing

Re: [PHP] max_execution_time and set_time_limit() problem.

2003-03-04 Thread Eric Wood
Even set_time_limit(0) does extend the timeout. Always a 30 second timeout. Any other ideas? thanks, -eric wood > I'm uploading a large file through my web page and after 30 seconds, the > fails with an error. I bumbed the max_execution_time parameter in > /etc/php.ini to 600 seconds and resta

[PHP] max_execution_time and set_time_limit() problem.

2003-03-03 Thread Eric Wood
I'm uploading a large file through my web page and after 30 seconds, the fails with an error. I bumbed the max_execution_time parameter in /etc/php.ini to 600 seconds and restarted apache. Still errors at 30 seconds. I added set_time_limit(600); to various place in my file upload handling scrip

RE: [PHP] max_execution_time & header

2001-07-09 Thread scott [gts]
gt; Subject: Re: [PHP] max_execution_time & header > > > 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. > > wi

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

[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 redi

Re: [PHP] max_execution_time

2001-07-03 Thread mike cullerton
his is the correct link: > http://php.net/manual/en/function.set-time-limit.php > > -maxim maletsky > > > -Original Message- > From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 04, 2001 2:07 PM > To: mike cullerton > Cc: php php > S

Re: [PHP] max_execution_time

2001-07-03 Thread Rasmus Lerdorf
> i've got a script running into my max_execution_time. is there a way to > override the value in php.ini from within a script, rather than increasing > the time in php.ini? http://php.net/settimelimit -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] max_execution_time

2001-07-03 Thread mike cullerton
hey folks, i've got a script running into my max_execution_time. is there a way to override the value in php.ini from within a script, rather than increasing the time in php.ini? thanks, mike -- mike cullerton -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMA

[PHP] max_execution_time && sleep()

2001-04-05 Thread PHP User
What is the deal with sleep(), does it break the 'max_execution_time' that is set in php.ini? This is good, this is what I want, but I just want to double check that this is really happening. I have an emial script that seems to run for about 15 minutes because I sleep() it between each e