martinjsmith
02-10-2003, 04:39 PM
I am using:
session_start();
session_register('login');
session_register('password');
at the top of my first page after login on my site. After this I use session_start(); at the top of every page and then check on every page that the current session variables $login and $password are paired up in my database to validate my users.
This seems to work fine in IE5.5 and below but in IE6 with it's extra security settings, my users are told they are not logged in. This can be fixed this manually by going into the Tools/Internet options menu and adding my site the the "allow" sites. However, I would like to know if there is a way I could get my site to work ok without requiring my users to go through this annoying procedure.
Thanks,
Martin
session_start();
session_register('login');
session_register('password');
at the top of my first page after login on my site. After this I use session_start(); at the top of every page and then check on every page that the current session variables $login and $password are paired up in my database to validate my users.
This seems to work fine in IE5.5 and below but in IE6 with it's extra security settings, my users are told they are not logged in. This can be fixed this manually by going into the Tools/Internet options menu and adding my site the the "allow" sites. However, I would like to know if there is a way I could get my site to work ok without requiring my users to go through this annoying procedure.
Thanks,
Martin