* Thus wrote David Coleman ([EMAIL PROTECTED]):
> I have a PHP page that for some reason is taking an ungodly long time to
> execute.  I suspect that this is simply b/c I’m running Apache 1.3 /
> MySQL 4.013-nt, PHP 4, Zend studio 3.0, and MySQL GUI on a 266 MhZ win2K
> server.  (Yes people, I know I’m choking the poor thing, but I can’t
> afford a new server right now.)
>  
> My question to the group is:
>  
> Does anyone know how I can increase my timeouts on page generation?
> Halfway through the rowset, the page stops generating and returns to the
> browser cut off at whatever point the server (apache, PHP or MySQL, I
> dunno which) gave up and decided the page was taking too long.  It seems
> to be a 90 second html response timeout imbedded somewhere in my
> configuration, but I have no idea where to look to change this value to
> unlimited, or maybe to 600 seconds or something more reasonable for the
> hideous rowsets that my project is dealing with.
SEE:

In your php.ini:
  max_execution_time = 30; ;default value

Apache conf:
  Timeout 300  #default value in seconds
  
  
Curt
-- 
List Stats: http://zirzow.dyndns.org/html/mlists/php_general/

"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to