I'm trying to track down an annoying problem that only occurs when I
access my pages on a remote server using IE6. If I run instead run
from localhost, IE6 works fine, and if I use another browser on the
remote site, there are no problems.
I'm not really looking for help debugging. I'd just like to be pointed
in the right direction.
Essentially, what happens is this. When I start up (i.e. load
index.php on my site), I am logged out. When I log in, I go to
logincheck.php, which validates the login and transfers control back
to index.php with a few session variables set to indicate that I am
logged in. Up to here, everything works with all browsers and
locations. Next, I execute a database search, which goes to
searchresults.p hp to do the actual work, stuffs the results into
session variables, and returns to index.php. When I do this on the
remote site using IE6, the session variables set by the search are
present, but the login variables have been lost, so that I appear to
be once again logged out.
I've tried with both register_global s = On and register_global s = Off
with no change of behavior.
Does anyone have a clue what could be happening to cause this? For the
record, there are differences between localhost and the remote site.
I'm running PHP 5.2.3 locally, but the remote version is 5.0.5. There
may be other relevant differences as well.
access my pages on a remote server using IE6. If I run instead run
from localhost, IE6 works fine, and if I use another browser on the
remote site, there are no problems.
I'm not really looking for help debugging. I'd just like to be pointed
in the right direction.
Essentially, what happens is this. When I start up (i.e. load
index.php on my site), I am logged out. When I log in, I go to
logincheck.php, which validates the login and transfers control back
to index.php with a few session variables set to indicate that I am
logged in. Up to here, everything works with all browsers and
locations. Next, I execute a database search, which goes to
searchresults.p hp to do the actual work, stuffs the results into
session variables, and returns to index.php. When I do this on the
remote site using IE6, the session variables set by the search are
present, but the login variables have been lost, so that I appear to
be once again logged out.
I've tried with both register_global s = On and register_global s = Off
with no change of behavior.
Does anyone have a clue what could be happening to cause this? For the
record, there are differences between localhost and the remote site.
I'm running PHP 5.2.3 locally, but the remote version is 5.0.5. There
may be other relevant differences as well.
Comment