diff options
| -rw-r--r-- | php.ini-development | 4 | ||||
| -rw-r--r-- | php.ini-production | 7 |
2 files changed, 3 insertions, 8 deletions
diff --git a/php.ini-development b/php.ini-development index 731715efae..ed3d1f1fd9 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1499,10 +1499,6 @@ session.referer_check = ; Windows random source (using the CryptoAPI) ;session.entropy_file = /dev/urandom -; http://php.net/session.entropy-length -; defaults to 32 -;session.entropy_length = 32 - ; Set to {nocache,private,public,} to determine HTTP caching aspects ; or leave this empty to avoid sending anti-caching headers. ; http://php.net/session.cache-limiter diff --git a/php.ini-production b/php.ini-production index 6a7748272a..5fbb68899e 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1494,6 +1494,9 @@ session.bug_compat_warn = Off ; http://php.net/session.referer-check session.referer_check = +; How many bytes to read from the file. +; http://php.net/session.entropy-length +;session.entropy_length = 32 ; Specified here to create the session id. ; http://php.net/session.entropy-file ; Defaults to /dev/urandom @@ -1503,10 +1506,6 @@ session.referer_check = ; Windows random source (using the CryptoAPI) ;session.entropy_file = /dev/urandom -; http://php.net/session.entropy-length -; defaults to 32 -;session.entropy_length = 32 - ; Set to {nocache,private,public,} to determine HTTP caching aspects ; or leave this empty to avoid sending anti-caching headers. ; http://php.net/session.cache-limiter |
