Re: PHP session data - FF and IE
- From: Erwin Moller <Since_humans_read_this_I_am_spammed_too_much@xxxxxxxxxxxxxxxx>
- Date: Mon, 22 Sep 2008 15:43:20 +0200
Oscar Arreyano schreef:
I can't seem to get a logon page to work in FF, but it works fine in IE. What should I look for in order to start debugging?
The form passes in a username, password, and security code (like a capcha). All three are sessioned along with the security code at the time of login. I'm not sure why FF would handle sessions differently than IE, but for some reason it just won't work. Is the problem with session data or with something else?
TIA.
Hi,
Impossible to tell without seeing the actual code.
But I always start debugging by letting the receiving script do this:
echo "<pre>";
print_r($_POST);
echo "</pre>";
exit;
If that is fine, start debugging the session.
eg: Can you make a page that stores a var in $_SESSION and then recall it on the next with FF?
Also have a look at cookies, maybe you disabled cookies on FF and not on IE, but told php via php.ini to only use cookies.
That, a zillion more possibilities. ;-)
Regards,
Erwin Moller
--
============================
Erwin Moller
Now dropping all postings from googlegroups.
Why? http://improve-usenet.org/
============================
.
- Follow-Ups:
- Re: PHP session data - FF and IE
- From: Oscar Arreyano
- Re: PHP session data - FF and IE
- References:
- PHP session data - FF and IE
- From: Oscar Arreyano
- PHP session data - FF and IE
- Prev by Date: PHP session data - FF and IE
- Next by Date: Re: PHP , MySQL Backup
- Previous by thread: PHP session data - FF and IE
- Next by thread: Re: PHP session data - FF and IE
- Index(es):
Relevant Pages
|