Also, as of PHP 5.3.3 the server php.ini file (in a default installation) tries to force the use of cookies to contain session data. You need to find this line in your main php.ini file:

session.use_only_cookies = 1

and comment it out, like so:

; session.use_only_cookies = 1

Then restart the server.

Vger