This is a discussion on POST Variable problem with Vista Home within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hello, I have a strange problem that is only occuring on a new Vista Home Dell laptop in IE7. On ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
I have a strange problem that is only occuring on a new Vista Home Dell laptop in IE7. On the website I have a login screen that uses POST Variables to get the user name and password. However, on this 1 brand new DELL laptop the POST variables are not getting picked up. My other Vista Ultimate machine works as well as all of my XP machines. The problem only occurs on IE7 and works using Fire Fox. Has anyone run into this? It must be a setting in IE7 but I have no idea what. I have 850 + people that have signed up but I don't know how many of these are Vista machines. Thanks in Advance, Vic |
|
|||
|
vic wrote:
> Hello, > > I have a strange problem that is only occuring on a new Vista Home Dell > laptop in IE7. On the website I have a login screen that uses POST > Variables to get the user name and password. However, on this 1 brand > new DELL laptop the POST variables are not getting picked up. My other > Vista Ultimate machine works as well as all of my XP machines. The > problem only occurs on IE7 and works using Fire Fox. Has anyone run > into this? It must be a setting in IE7 but I have no idea what. I have > 850 + people that have signed up but I don't know how many of these are > Vista machines. > > Thanks in Advance, I had this problem once with a virus scanner (Kaspersky beta 6) Try this: var_dump($_POST); -- www.arjenkarel.nl |
|
|||
|
"Arjen" <dont@mail.me> wrote in message news:f84oje$65n$1@brutus.eur.nl... > vic wrote: >> Hello, >> >> I have a strange problem that is only occuring on a new Vista Home Dell >> laptop in IE7. On the website I have a login screen that uses POST >> Variables to get the user name and password. However, on this 1 brand new >> DELL laptop the POST variables are not getting picked up. My other Vista >> Ultimate machine works as well as all of my XP machines. The problem only >> occurs on IE7 and works using Fire Fox. Has anyone run into this? It >> must be a setting in IE7 but I have no idea what. I have 850 + people >> that have signed up but I don't know how many of these are Vista >> machines. >> >> Thanks in Advance, > > I had this problem once with a virus scanner (Kaspersky beta 6) > > Try this: var_dump($_POST); > > -- > www.arjenkarel.nl OK - I dumped the POST variables and the Vista Home machine is empty after receiving the username and password. On the other machines the dump shows them correctly. Here's something else that I noticed. I have a "Forgot Password" link on the screen and if I hover on it, it shows &PHPSESSID and a long string of numbers which is not on the other machines |
|
|||
|
"vic" <vic at showsec dot com> wrote in message news:xKCdnXz3QLnGmTvbnZ2dnUVZ_j-dnZ2d@comcast.com... > > "Arjen" <dont@mail.me> wrote in message news:f84oje$65n$1@brutus.eur.nl... >> vic wrote: >>> Hello, >>> >>> I have a strange problem that is only occuring on a new Vista Home Dell >>> laptop in IE7. On the website I have a login screen that uses POST >>> Variables to get the user name and password. However, on this 1 brand >>> new DELL laptop the POST variables are not getting picked up. My other >>> Vista Ultimate machine works as well as all of my XP machines. The >>> problem only occurs on IE7 and works using Fire Fox. Has anyone run >>> into this? It must be a setting in IE7 but I have no idea what. I have >>> 850 + people that have signed up but I don't know how many of these are >>> Vista machines. >>> >>> Thanks in Advance, >> >> I had this problem once with a virus scanner (Kaspersky beta 6) >> >> Try this: var_dump($_POST); >> >> -- >> www.arjenkarel.nl > > OK - I dumped the POST variables and the Vista Home machine is empty after > receiving the username and password. On the other machines the dump shows > them correctly. > > Here's something else that I noticed. I have a "Forgot Password" link on > the screen and if I hover on it, it shows &PHPSESSID and a long string of > numbers which is not on the other machines > BTW - Cookies are enabled on the site |