RE: Cookies and IE in mod_perl

2002-03-27 Thread Rob Bloodgood
> I've determined that it isn't the redirect causing the cookies not > to be set. If I take out the redirect, and just try to set a cookie > w/o a redirect, it still doesn't set the cookies in IE. Does M$ > have any docs on how IE6 handles cookies that I can look this up on? YES, they do. You h

Re: Cookies and IE in mod_perl

2002-03-24 Thread Balazs Rauznitz
On Sun, Mar 24, 2002 at 01:44:51PM -0500, Jesse and Rebecca Stay wrote: > I've determined that it isn't the redirect causing the cookies not to be set. > If I take out the redirect, and just try to set a cookie w/o a redirect, it > still doesn't set the cookies in IE. Does M$ have any docs on

Re: Cookies and IE in mod_perl

2002-03-24 Thread Michael Robinton
On Sat, 23 Mar 2002, Jesse and Rebecca Stay wrote: > Ok - I got rid of the Apache::Cookie stuff, and am now doing things manually, > but it still doesn't generate a cookie in IE. It still works in Netscape. I > get a redirect, but no cookie. Here is my code: > > my $r = Apache->request;

Re: Cookies and IE in mod_perl

2002-03-24 Thread Jesse and Rebecca Stay
I've determined that it isn't the redirect causing the cookies not to be set. If I take out the redirect, and just try to set a cookie w/o a redirect, it still doesn't set the cookies in IE. Does M$ have any docs on how IE6 handles cookies that I can look this up on? On Saturday 23 March 200

Re: Cookies and IE in mod_perl

2002-03-23 Thread Cees Hek
Some browsers don't accept cookies sent allong with a redirect header. A simple workaround is to leave your cookie in the header, but move the redirect to a META HTTP-EQUIV tag in a blank HTML document. I'm not sure if IE 6.0 suffers from this but I suspect that this is your problem. So this

Re: Fw: Re: Cookies and IE in mod_perl

2002-03-23 Thread Dzuy Nguyen
There are different security levels that must be set.  You can also specifically tell the browser to accept all cookies from a particular domain.  There is an article on MS site about this.  I forgot what it was. You can probably search for it on google. Frank Wiles wrote: [EMAIL PROTECTED]">

Re: Cookies and IE in mod_perl

2002-03-23 Thread Jesse and Rebecca Stay
Ok - I got rid of the Apache::Cookie stuff, and am now doing things manually, but it still doesn't generate a cookie in IE. It still works in Netscape. I get a redirect, but no cookie. Here is my code: my $r = Apache->request; $r->content_type('text/html'); $r->err_headers_out->

Re: Cookies and IE in mod_perl

2002-03-23 Thread Jesse and Rebecca Stay
I guess in particular, does anyone know of any known issues with Apache::Cookie and IE6.0 (or any other versions)? On Saturday 23 March 2002 07:09 pm, Jesse and Rebecca Stay wrote: > Here is the code I use (in this particular case it is being used with a > redirect, but it doesn't work in any ca

Re: Cookies and IE in mod_perl

2002-03-23 Thread Jesse and Rebecca Stay
Here is the code I use (in this particular case it is being used with a redirect, but it doesn't work in any case.): my $cookieContent = Apache::Cookie->new( $r, -name=> 'userSession', -value => $cookieValue,

Fw: Re: Cookies and IE in mod_perl

2002-03-23 Thread Frank Wiles
On Sat, 23 Mar 2002 18:52:14 -0500 Jesse and Rebecca Stay <[EMAIL PROTECTED]> wrote: > Has anyone had any issues in getting cookies to work with IE using mod_perl? > I have tried using both CGI::Cookie and Apache::Cookie, and in both instances > it works just fine under Netscape, but on IE it

Cookies and IE in mod_perl

2002-03-23 Thread Jesse and Rebecca Stay
Has anyone had any issues in getting cookies to work with IE using mod_perl? I have tried using both CGI::Cookie and Apache::Cookie, and in both instances it works just fine under Netscape, but on IE it doesn't even try to set the cookie. Any ideas? -Jesse Stay