Announcement

Collapse
No announcement yet.

PHP SESSION timeout verlängern

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • PHP SESSION timeout verlängern

    hallo, wisst ihr wie ich eine SESSION in php zur laufzeit verlängern kann?

  • #2
    Den Cookie kannst du mit

    http://www.php.net/manual/de/functio...kie-params.php

    manipulieren
    Zuletzt editiert von Christian Marquardt; 30.11.2012, 12:45.
    Christian

    Comment


    • #3
      mit
      session.cache_expire(60) = 1 Stunde da in Minuten gerechnet wird

      mfg

      Comment


      • #4
        Aus der man:
        ** This has nothing to do with lifetime of a session **
        Whatever you set this setting to, it won't change how long sessions live on your server.

        This only changes HTTP cache expiration time (Expires: and Cache-Control: max-age headers), which advise browser for how long it can keep pages cached in user's cache without having to reload them from the server.
        Zuletzt editiert von Christian Marquardt; 20.12.2012, 07:52.
        Christian

        Comment

        Working...
        X