diff --git a/appendices/migration5.xml b/appendices/migration5.xml index 953f945f9f..55175fa92e 100755 --- a/appendices/migration5.xml +++ b/appendices/migration5.xml @@ -1,5 +1,5 @@ - + Migrating from PHP 4 to PHP 5 @@ -408,16 +408,18 @@ Action application/x-httpd-php "/php/php-cgi.exe" mail, even in safe mode - register_long_arrays - - allow/disallow PHP to register the deprecated long $HTTP_*_VARS + register_long_arrays - + allow/disallow PHP to register the deprecated long $HTTP_*_VARS - session.hash_function - select a hash function (MD5 or SHA-1) + session.hash_function - + select a hash function (MD5 or SHA-1) - session.hash_bits_per_character - define how many bits are stored in - each character when converting the binary hash data to something - readable (from 4 to 6) + session.hash_bits_per_character + - define how many bits are stored in each character when converting the + binary hash data to something readable (from 4 to 6) diff --git a/reference/session/ini.xml b/reference/session/ini.xml index c883525184..1ef113a30d 100644 --- a/reference/session/ini.xml +++ b/reference/session/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -125,6 +125,16 @@ "1" PHP_INI_ALL + + session.hash_function + "0" + PHP_INI_ALL + + + session.hash_bits_per_character + "4" + PHP_INI_ALL + url_rewriter.tags "a=href,area=href,frame=src,input=src,form=fakeentry" @@ -563,6 +573,45 @@ + + + session.hash_function + integer + + + + session.hash_function allows you to specify the hash + algorithm used to generate the session IDs. '0' means MD5 (128 bits) and + '1' means SHA-1 (160 bits). + + + + This was introduced in PHP 5. + + + + + + + + session.hash_bits_per_character + integer + + + + session.hash_bits_per_character allows you to define + how many bits are stored in each character when converting the binary + hash data to something readable. The possible values are '4' (0-9, a-f), + '5' (0-9, a-v), and '6' (0-9, a-z, A-Z, "-", ","). + + + + This was introduced in PHP 5. + + + + + url_rewriter.tags