James Stone
|
| Posted: 10/09/2007, 3:04 PM |
|
I have an excel output, about 3000 records, it's timing out.
I can get about 1000 before it times out. It's on Network Solutions PHP
site, cool, but slow, you know.
Says in here use ini_set on max_execution_time
Where and how.
ini_set according to PHP is done in php.ini, but the max_execution_time
parameter is nowhere to be found on PHP.NET site.
Thanks ahaed of time
James Stone
jstone@salesnavigator.net
Stone Software
|
|
|
 |
wkempees
|
| Posted: 10/09/2007, 3:51 PM |
|
http://www.php.net/manual/en/function.set-time-limit.php
In your page's BeforeShow event add this:
set_time_limit(60); //set execution time to one minute.
This will override whatever is set in your PHP.ini.
Walter
|
|
|
 |
|