I am developing a Web app with the MAMP solution stack (v2.0.5), which includes:
- Mac OS X (v10.7.3)
- Apache v2.2.21
- MySQL v5.5.9
- PHP v5.3.6
The path to my loaded php.ini configuration file: /Applications/MAMP/bin/php/php5.3.6/conf/php.ini
Currently my phpinfo.php script tells me that my session settings are set to:
- session.hash_bits_per_character = 4
- session.hash_function = 0
So I opened up my php.ini file, these lines were not already present, so I added them as:
- session.hash_bits_per_character = 5
- session.hash_function = 1
(for SHA1) (doesn't work with = sha256 either).
I was surprised that the lines weren't already present, yet I expected to be able to just add them, save the file, restart my MAMP servers and be away with the change... no luck.
Anyomne experienced this before or have any ideas? Many thanks.
EDIT 1 - Currently I issue the following in my header file (included at the top of all my PHP scripts) to set it to use cookies only and only though HTTP.
// Configure the session:
ini_set('session.use_only_cookies', 1);
ini_set('session.cookie_httponly', 1);
// Name the session:
session_name('NewsMunch');
// Initialise the session:
session_start();
Would it be advisable to also issue these statements here to?
ini_set('session.hash_function', sha256);
ini_set('session.hash_bits_per_character', 5);

php.ini?? Load php info in a browser. Edit thephp.inifile shown there. – shiplu.mokadd.im Apr 12 '12 at 11:09