I'm also trying to reproduce the sessionhash, I've gotten that the code that sets the SESSION_IDHASH is:
PHP Code:
if (!defined('SESSION_IDHASH'))
{
define('SESSION_IDHASH', md5($_SERVER['HTTP_USER_AGENT'] . $this->fetch_substr_ip($registry->alt_ip))); // this should *never* change during a session
}
But theres a lot of variables and I'm not sure where they come from.