I'm trying to pass the value of session id via get (url) and not via cookies. My configuration of php.ini is:
session.use_cookies = on session.use_only_cookies = off session.use_trans_sid = on
Normally (always) the cookie are ENABLED in the user's browser, so if i try to pass the sid via url: www.site.com/?phpsessid=abc it doesn't work, because the constant SID (http://www.php.net/manual/en/session.idpassing.php) remain empty and the session work with $_COOKIE['PHPSESSID'].
Çerez elle SID ile oturum çalışma devre dışı bırakılır.
Benim soru: çerezler etkin i get aracılığıyla SID kullanabilir? Belki ben bilmezlikten bazı php.ini yapılandırmalar var ....
thx :)