The session handling code fails when the hash function is set to SHA1 in PHP, because the length of the session_id field in the database is limited to 32 characters. Either the size of session_id field should be increased to 40, or this line should be added to session.php before session_start() is called:
Code: Select all
ini_set('session.hash_function', '0');
Regards,