Hello,
Having a problem with a login page on my website. I just got this up and running, and everyone seems to login fine, except one person in Singapore is having a problem. I have done some troubleshooting but figured I'd post it here to see if anyone can provide some helpful advice.
The code is setup as follows:
Upon successful user:login verification, the session is started:
session_start();
session_register("SESSION");
and the username and IP address are added as session variables.
They are then supposed to be redirected to the index page, which tests to see if they have an active session, and if their IP address is the same (as when they logged in), and lets them in, if not, it bounces them back to the login page. Again, everyone is getting there fine, except one person keeps going back to the login page every time.
My server is running:
PHP Version 4.3.3
register_globals ON
Apache/1.3.28
His machine is a WinXP with IE 6.
I had him check to see if cookies were enabled and made sure he added our domain to the "Allow" list within IE. Also setup a test page, and he is getting session variables set. I'm kind of at a loss here. My guess is that there is a problem with him passing the session variables to the next page? I am relatively new to this, so any help or guidance would be much appreciated.
Thanks in advance,
Kevin
😕 (had to throw in a smiley for my first post)