I'm trying to hide PHPSESSID thats added to the end of every link on my page. To do that I changed session.use_trans_sid from 1 to 0, to make session ids transparent. However, that really screwed up the site I'm working on...
The site I'm working on requires a user to login, when logging in the users session id and ip adress is stored in a database. The user is the continuously authenticated by confirming his session id and ip adress against those stored in the database.
As soon as I set use_trans_sid to 0, my loggin stopped working. Oh, I can login... but as soon as I do anything after logging in I get booted directly back to the loggin page.
I'm using an apache webbserver and I've tried both php 4.3.3 and 4.2.0 with the same result.