diff options
author | Andrei Zmievski <andrei@php.net> | 1999-11-01 16:13:41 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 1999-11-01 16:13:41 +0000 |
commit | 1fd576485f0926f401433663ded9779e56c805bb (patch) | |
tree | 19f045240576e04ffb4f323ac99aae1145751b52 | |
parent | fb52cb2d3012a75034eefcb6c50ebc24d4479f7b (diff) | |
download | php-git-1fd576485f0926f401433663ded9779e56c805bb.tar.gz |
Added new session configuration directives.
# Sascha, please document them here.
-rw-r--r-- | php.ini-dist | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/php.ini-dist b/php.ini-dist index ad62399820..6db033cc74 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -277,8 +277,10 @@ session.use_cookies = 1 ; whether to use cookies session.name = PHPSESSID ; name of the session ; is used as cookie name session.auto_start = 0 ; initialize session on request startup -session.lifetime = 0 ; lifetime in seconds of cookie +session.cookie_lifetime = 0 ; lifetime in seconds of cookie ; or if 0, until browser is restarted +session.cookie_path = ; +session.cookie_domain = ; session.serialize_handler = php ; handler used to serialize data ; php is the standard serializer of PHP session.gc_probability = 1 ; procentual probability that the @@ -287,3 +289,6 @@ session.gc_probability = 1 ; procentual probability that the session.gc_maxlifetime = 1440 ; after this number of seconds, stored ; data will be seen as 'garbage' and ; cleaned up by the gc process +session.extern_referer_check = ; +session.entropy_file = ; +session.entropy_length = 0 ; |