Session Timeout Question

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

    Session Timeout Question

    Can I adjust the PHP session timeout on my web site? Users are
    reporting timeout errors when they leave their computer for a period
    of time and then come back to resume using the site - is there some
    kind of global session timeout in PHP that I can set?

    Thanks...

  • Brian

    #2
    Re: Session Timeout Question




    session.cookie_ lifetime integer

    session.cookie_ lifetime specifies the lifetime of the cookie in seconds
    which is sent to the browser. The value 0 means "until the browser is
    closed." Defaults to 0.See also session_get_coo kie_params() and
    session_set_coo kie_params().

    session.cache_e xpire integer
    session.cache_e xpire specifies time-to-live for cached session pages in
    minutes, this has no effect for nocache limiter. Defaults to 180. See also
    session_cache_e xpire().





    "Ralph Freshour" <ralph@primemai l.com> wrote in message
    news:5thupvojj7 hph43non58tgp04 ch0g399ol@4ax.c om...[color=blue]
    > Can I adjust the PHP session timeout on my web site? Users are
    > reporting timeout errors when they leave their computer for a period
    > of time and then come back to resume using the site - is there some
    > kind of global session timeout in PHP that I can set?
    >
    > Thanks...
    >[/color]


    Comment

    Working...