Chris W wrote:
> I don't know that this really matters, but I am having problems with
> cookies getting set when viewing my site with an old version of
> netscape, I still have installed 4.79.  I'm not that concerned with
> supporting that old of a browser but I am 99% sure the site was
> working with that browser at one time.  It works fine with all other
> browsers I have tired (Mozilla, IE, Opera, NS 7.1).  Does anyone know
> why the old version of netscape seems to be ignoring my cookies but
> still accepts cookies from other sites?  The set cookie code looks
> like this.
>
> setcookie("UserID", stripslashes($UserID), 0, '/', $mydomain);
>
> I know that $UserID and $mydomain are set right because it works in
> other browsers.
>
> BTW $mydomain is set to "thewishzone.com"  but you need to use port
> 8086 on my testing machine to get at it.  Could that be the reason
> netscape
> 4.79 isn't working with it?
>
> Chris W

We've had that same problem here with IE 5 for Mac. The solution ended up
being setting the cookie like this: setcookie("cookie_name", $cookie_value)
with nothing else (no time, etc.). That is the only way that old crappy
browser would accept the cookie.

Which leaves me to wonder...why are we still programming to support browsers
with obvious bugs in them?!?!

Katie Dewees
Web Developer/PHP Programmer
[EMAIL PROTECTED]
http://www.evans-young.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to