understanding time outs

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • siliconmike

    understanding time outs

    I'm using apache+php

    I'm trying to understand how various timeouts work and where are the
    settings..
    Lets say a web browser requests page index.php which does some long
    processing.

    When would the web browser time out ?
    When would apache time out ? Where are the settings ?
    When would php time out ? Where are the settings ?

    some concepts would be helpful.

    Mike.

  • Botan Guner

    #2
    Re: understanding time outs

    > When would the web browser time out ?[color=blue]
    > When would apache time out ? Where are the settings ?[/color]

    The Apache config file httpd.conf is located in the conf dir where you
    have installed Apache. All Apache configuration options are there. I
    think you are looking for this,

    in httpd.conf
    #
    # Timeout: The number of seconds before receives and sends time out.
    #
    Timeout 300

    [color=blue]
    > When would php time out ? Where are the settings ?[/color]

    Php config file is php.ini,
    in php.ini
    max_execution_t ime = 300 ; Maximum execution time of each script,
    in seconds

    Changing those setting might help you.

    Comment

    Working...