Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
In Netscape, when clicking on the link from aaa to bbb, the brower puts up a popup warning "You have requested an encrypted page that contains some unencrypted information..." What does this warning mean? The bbb page is contentless, just a redirect -- what is insecure on it? Is there some mod_perl magic that would avoid this warning? Thanksmy $cookie_out = CGI::Cookie->new( -name => $hitid, -value => $cell, -domain => 'www.bbb.com', -path => '/', -secure => $ENV{HTTPS}, -expires => '+1d', ); $r->err_headers_out->add('Set-Cookie' => $cookie_out); $r->headers_out->set(Location => $url); return &Apache::REDIRECT;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: encrypted page contains
by liz (Monsignor) on Oct 17, 2003 at 10:51 UTC | |
|
Re: encrypted page contains
by oghran (Initiate) on Oct 17, 2003 at 12:44 UTC | |
|
Re: encrypted page contains
by inman (Curate) on Oct 17, 2003 at 13:20 UTC | |
by inman (Curate) on Oct 17, 2003 at 16:09 UTC |