Weedpacket;10892143 wrote:Two or three things to check:
Your PHP configuration: your session settings, particularly session.use_cookies and session.use_trans_sid
Cookie settings, both in general and for your specific domain (I know you can whitelist/blacklist particular domains in Firefox; I don't remember about IE6); for that matter I don't know if IE7 and IE6 will conflict over browser settings (I always run them in different virtual machines)
If use_trans_sid is off and the browser is refusing cookies then you would have to fall back on inserting the session ID into the URL manually.
Thanks for the info. I checked my php config for sessions, as you suggested, and found the followiing settings:
session.use_cookies On
session.use_only_cookies Off
session.use_trans_sid Off
I tried setting session.use_trans_sid to on using the following code before session_start():
ini_set(’session.use_trans_sid’,1)
session_start()
However, after running the code again, I received the same results on Firefox and IE6 (no session var). IE7 worked fine.