Oh wise monks!

i'm sorry to trouble you with this one, but i've run out of ideas. i have a login script, based on Merlyn's excellent suggestions, that was working great until a couple of months ago, when all of my users on IE were suddenly unable to log on. i figured it might be a privacy issue, and i set up a privacy policy that now passes the w3 privacy validator.

but, IE still won't set the cookies to let me in.

you can try this at:

http://tikvatisrael.org/memberarea/login/

and use "guest" and "guest" as username and password. it works in firefox, safari, opera, etc, but in IE, it just blinks, and goes back to the login page.

the code that is setting the cookies is:

my $cookie = $query->cookie( -name=>"SESSID", -value=> $sessid, -expires => "+1h", -path=> "/"); print $query-> redirect( -uri=>"http://tikvatisrael.org/memberarea/taskmenu/", -cookie=> $cookie);
i'm using CGI.pm, but not using CGI::Cookies. could that be the simple answer??

In reply to IE cookies problem by jck

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.