From: Andrei Zmievski Date: Mon, 1 Nov 1999 16:13:41 +0000 (+0000) Subject: Added new session configuration directives. X-Git-Tag: php-4.0b3_RC2~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1fd576485f0926f401433663ded9779e56c805bb;p=php Added new session configuration directives. # Sascha, please document them here. --- 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 ;