Hello,
Anyway I can get rid of the PHPSESSID in the URL? It only occurs on the second or first page, then is gone.
Doing some research, I tried adding ini_set("session.use_trans_sid", 0);
at the top of the page before session_start (); , but still get it in the URL.
Thanks in advance ..
Tim
Getting rid of the PHPSESSID in the URL??
Moderator: General Moderators
strange but maybe session.use_only_cookies will help you
ini_set("session.use_trans_sid", 0) is before session_start(), you did not miss one?
Without access to the global php.ini this might be set in .htaccess for the whole directory (see also: http://www.php.net/manual/en/configuration.changes.php#configuration.changes.apache)
ini_set("session.use_trans_sid", 0) is before session_start(), you did not miss one?
Without access to the global php.ini this might be set in .htaccess for the whole directory (see also: http://www.php.net/manual/en/configuration.changes.php#configuration.changes.apache)