Posted by joe on 02/24/06 22:15
Yes, phpinfo() will show you that information.
session.use_cookies - On.
If you don't already, you can also try setting the session cookie
params yourself, e.g.
session_set_cookie_params (0, "/path/to/dir/");
(0 meaning keep cookie for life of browser)
Full doc:
http://us3.php.net/manual/en/function.session-set-cookie-params.php
[Back to original message]
|