mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
added missing configuration parameters (bug id#4740)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@25658 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a288693bde
commit
99b66315bd
1 changed files with 27 additions and 1 deletions
|
@ -207,7 +207,7 @@ close
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>session.lifetime</literal> specifies the lifetime of
|
||||
<literal>session.cookie_lifetime</literal> 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
|
||||
<literal>0</literal>.
|
||||
|
@ -272,6 +272,32 @@ close
|
|||
side. Defaults to <literal>1</literal> (enabled).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>session.cookie_path</literal> specifies path to set
|
||||
in session_cookie. Defaults to <literal>/</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>session.cookie_domain</literal> specifies domain to
|
||||
set in session_cookie. Default is none at all.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>session.cache_limiter</literal> specifies cache control
|
||||
method to use for session pages (nocache/private/public).
|
||||
Defaults to <literal>nocache</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>session.cache_expire</literal> specifies time-to-live
|
||||
for cached session pages in minutes, this has no effect for
|
||||
nocache limiter. Defaults to <literal>180</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
<note>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue