in reply to Re: Re: CGI and Redirect/URI/Location
in thread CGI and Redirect/URI/Location
I'm confused. You seem to be mixing function and OO calls to CGI. I'm not sure if this is causing your problem, but it might. I've never experienced issues with cookies working with one browser and not the other.
Some things to try:
my $q = new CGI; my $c = $q->Cookie(-name => 'login', -value => $login2, -expires => '+3M', -domain => '.mydomain.com' ); print $q->redirect(-cookie=>$c, -location=>$URL);
Good Luck!
|
|---|