This is a discussion on warning "Maximum execution time of 30" within the PHP Language forums, part of the PHP Programming Forums category; I´ve this warning in a php page "Maximum execution time of 30 seconds exceeded ", I´ve configurated ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I´ve this warning in a php page "Maximum execution time of 30 seconds
exceeded ", I´ve configurated the php.in, setting the value of max_execution_time = 1200, and then i restart the apache service. The apache server is in a Win2000 server machine. Thank´s |
|
|||
|
*** ivancasher escribió/wrote (26 Jul 2006 02:37:31 -0700):
> I´ve this warning in a php page "Maximum execution time of 30 seconds > exceeded ", I´ve configurated the php.in, setting the value of > max_execution_time = 1200, and then i restart the apache service. The > apache server is in a Win2000 server machine. I presume that didn't work :-? <? ini_set('max_execution_time', 3600); // 1 hour ini_set('memory_limit', '64M'); // 64MB ?> -- -+ http://alvaro.es - Álvaro G. Vicario - Burgos, Spain ++ Mi sitio sobre programación web: http://bits.demogracia.com +- Mi web de humor con rayos UVA: http://www.demogracia.com -- |