Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>By default, PHP uses the <code>files</code> <a href="http://www.php.net/manual/en/session.configuration.php#ini.session.save-handler" rel="nofollow">session handler</a>. These files are stored based on the <code>session.save_path</code> setting, but defaults to the system's temp directory (a highly insecure location, consider changing it)</p> <p>This session handler stores each session as a serialized PHP array in a file named with the session ID.</p> <p>If you can find out a session ID prior to it being cleaned up by the session garbage collection routine, it can be hijacked, as PHP does not internally do any sanity checks. You may wish to do your own by storing the user's IP address in the session and comparing it to their current IP, clearing the session if they don't match.</p> <p><code>session.gc_maxlifetime</code> controls how many seconds a session will be considered valid. After this point, the session has a small chance of being deleted every time a request occurs. Default is 1440 seconds (or 24 minutes).</p> <p>By default, this chance is 1%, but can be altered by adjusting the <code>session.gc_probability</code> and <code>session.gc_divisor</code> values (they default to 1 and 100 respectively).</p> <p>There are other session handlers as well, such as the ones included with the <a href="http://www.php.net/manual/en/book.memcache.php" rel="nofollow">memcache</a> or <a href="http://www.php.net/manual/en/book.memcached.php" rel="nofollow">memcached</a> extensions. There was once one based on the <code>libmm</code> shared memory library, but I believe that has been discontinued.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload