Hate to bring this back up, but I'm still having problems carrying sessions over from the login script to any other page. I don't think this is necessarily a problem with the script but rather environmental settings.
I'm using FF and I've set it to allow cookies from my local environment. I've found in certain cases a server will not allow cookies from 'localhost' so I'm using explicit naming (my computer name).
I've also tried changing the session save path:
ini_set('session.save_path', 'my_server_tmp');
so I can see when the sessions are being created. Before it was set a location outside the server in one of my windows user profile dirs and I don't think the actual session files were being created due to perms issues. I can see the session files now as they're created at the end of the login process. All the information is correct, but once redirected back to the application page, I start the session, ping the global session var and it's empty.
I also tried doing another ini_set...save_path at the beginning of the application page to match the login session save_path, but now it's just creating 2 sessions, one from the login page and the second from the app page.
What am I missing here (and where the hell is the smiley for rage and frustration)?