<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/session.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'session.installation.php',
    1 => 'Installation',
    2 => 'Installation',
  ),
  'up' => 
  array (
    0 => 'session.setup.php',
    1 => 'Installing/Configuring',
  ),
  'prev' => 
  array (
    0 => 'session.requirements.php',
    1 => 'Requirements',
  ),
  'next' => 
  array (
    0 => 'session.configuration.php',
    1 => 'Runtime Configuration',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/session/configure.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="session.installation" class="section">
 <h2 class="title">Installation</h2>
 <p class="para">
  This extension is enabled by default. It may be disabled by using the following option at compile time: 
  <strong class="option configure">--disable-session</strong>
 </p>
 <p class="para">
  To use shared memory allocation (mm) for session storage configure PHP
  <strong class="option configure">--with-mm[=DIR]</strong>.
 </p>
 <p class="simpara">The Windows version of PHP has built-in
support for this extension. You do not need to load any additional
extensions in order to use these functions.</p>
 <blockquote class="note"><p><strong class="note">Note</strong>: 
  <p class="para">
   By default, all data related to a particular session will be stored in
   a file in the directory specified by the session.save_path INI option.
   A file for each session (regardless of if any data is associated with
   that session) will be created. This is due to the fact that a session
   is opened (a file is created) but no data is even written to that file.
   Note that this behavior is a side-effect of the limitations of working
   with the file system and it is possible that a custom session handler
   (such as one which uses a database) does not keep track of sessions
   which store no data. 
  </p>
 </p></blockquote> 
</div><?php manual_footer($setup); ?>