Login script on Nutscrape not working
Posted: Fri Aug 06, 2004 4:58 pm
Ok, so I finally got around to checking out my site on netscape and I was extremely dissapointed.
Mostly fixable cosmetic stuff, but this has got me stumped:
The login doesn't work at all anymore.
It would appear that one of the two cookies I'm trying to set doesn't get set.
The key is set, but the name isn't. I put netscape on the lowest security and told it to "accept all cookies". I can see the key cookie in the Cookie manager. But thats it. no name cookie. I don't have a clue why it's not working.
It works fine in IE.
Anyone?
Thanks,
Mike
Mostly fixable cosmetic stuff, but this has got me stumped:
The login doesn't work at all anymore.
It would appear that one of the two cookies I'm trying to set doesn't get set.
Code: Select all
<?php
if($rememberme)
setcookie ("login_key", $cookie_val, 3153600,"/"); // stay logged in
else
setcookie ("login_key", $cookie_val, 0,"/"); // only good for this session
setcookie ("login_name", $user[user_username], 3153600,"/"); // always store the username.
?>It works fine in IE.
Anyone?
Thanks,
Mike