I've tried everything I can find...
1. Set session.use_only_cookies=1 in php.ini, but the setting wasn't there. I added it manually and it still didn't work.
2. Set session.use_coolies = 1 in php.ini
3. Set session.use_trans_sid = 0 in php.ini
I even tried adding
ini_set('session.use_only_cookies',1); prior to any session_starts and that didn't work either, I still am getting the damn url appended.
Here is the php.ini boiled down to session stuff
Code: Select all
variable in order to use PHP's session functions.
session.save_path = /tmp;
Whether to use cookies.
session.use_cookies = 1;
My entry.
session.use_only_cookies = 1;
Name of the session (used as cookie name).
session.name = PHPSESSID;
Initialize session on request startup.
session.auto_start = 0;
Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0;
The path for which the cookie is valid.
session.cookie_path = /;
The domain for which the cookie is valid.
session.cookie_domain =;
use transient sid support if enabled by compiling with --enable-trans-sid.
session.use_trans_sid = 0;
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
їMSSQL] ;Thanks, Philip