diff options
| author | Pierre Joye <pajoye@php.net> | 2010-06-08 13:46:19 +0000 |
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2010-06-08 13:46:19 +0000 |
| commit | f8b17007e08eb6903399bd282988593d7dc9fb6f (patch) | |
| tree | 09911b1f94528937904219d7de39c0dab5794bda | |
| parent | 9badd4f0fb03a9ca22775cf80f115a7cb617453c (diff) | |
| download | php-git-f8b17007e08eb6903399bd282988593d7dc9fb6f.tar.gz | |
- [DOC] add session.entropy* support to windows
| -rw-r--r-- | ext/session/tests/020.phpt | 2 | ||||
| -rw-r--r-- | php.ini-development | 3 | ||||
| -rw-r--r-- | php.ini-production | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/ext/session/tests/020.phpt b/ext/session/tests/020.phpt index 82997a8f04..53a546f180 100644 --- a/ext/session/tests/020.phpt +++ b/ext/session/tests/020.phpt @@ -6,7 +6,7 @@ rewriter uses arg_seperator.output for modifying URLs session.use_cookies=0 session.cache_limiter= session.use_trans_sid=1 -arg_separator.output="&" +arg_separator.output=& session.name=PHPSESSID session.serialize_handler=php session.save_handler=files diff --git a/php.ini-development b/php.ini-development index 5da1206dc8..d0a821cf39 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1586,6 +1586,9 @@ session.entropy_length = 0 ; Specified here to create the session id. ; http://php.net/session.entropy-file +; On systems that don't have /dev/urandom /dev/arandom can be used +; On windows, setting the entropy_length setting will activate the +; Windows random source (using the CryptoAPI) ;session.entropy_file = /dev/urandom session.entropy_file = diff --git a/php.ini-production b/php.ini-production index 71288e0b1b..1fe2725e8d 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1594,8 +1594,10 @@ session.entropy_length = 0 ; Specified here to create the session id. ; http://php.net/session.entropy-file +; On systems that don't have /dev/urandom /dev/arandom can be used +; On windows, setting the entropy_length setting will activate the +; Windows random source (using the CryptoAPI) ;session.entropy_file = /dev/urandom -session.entropy_file = ; http://php.net/session.entropy-length ;session.entropy_length = 16 |
