Posted by bpuzon on 08/18/06 10:50
lorenzdominic_@hotmail.com wrote:
> However it appears this is not required and all the tutorials on
> appending a Session ID to a URL are pointless.
ini_set("session.save_handler", "files");
The line tells the system to save session data in the files on your server.
It doesn't mean "don't store SSID valuen in cookies on the user's machine".
ini_set("session.use_cookies",0)
This should turn the feature off, then you probably will have to pass SID
explicitly.
--
Z powazaniem
Bartek Puzon
[Back to original message]
|