d_i_r_t_y has asked for the wisdom of the Perl Monks concerning the following question:
why don't any of my browsers receive a cookie from the following?
the session cookie when printed in the logs looks like:...."business logic".... my $cookie = get_session_cookie(); print $cgi->header( #-Refresh => "3; $PAGE_AFTER_LOGON", -type => 'text/html', -cookie => $cookie ); .... remainder of page .... sub get_session_cookie { return unless $SessionID; my $cookie = $cgi->cookie( -name => 'session_id', -value => $SessionID, -path => '/', -expires => '+4h', -domain => '.some.domain', ); warn "created session cookie: $cookie"; return $cookie; }
any ideas? my browsers ( netscape 4.7, linux; konqueror from kde2.1) are both set up to report and accept cookies...
this is getting really frustrating...
thanks, d_i_r_t_y
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: damn cookies...
by fpi (Monk) on Mar 11, 2001 at 13:01 UTC | |
|
(tye)Re: damn cookies...
by tye (Sage) on Mar 11, 2001 at 09:57 UTC | |
|
Re: damn cookies...
by sutch (Curate) on Mar 12, 2001 at 03:42 UTC | |
|
Re: damn cookies...
by lachoy (Parson) on Mar 12, 2001 at 06:48 UTC | |
by d_i_r_t_y (Monk) on Mar 12, 2001 at 08:31 UTC |