Hi,

Well, I've been surfing the questions & answers for about 2 hours already, using the 'super search' tool, trying houndreds of possibilities ... but no luck with my prob. :(

My problem is about cookies and redirection (yes, another one...)

( Oh, gotta say that I'm really newb to perl, trying my best :P )

I have something like (removing irrelevant parts):
use strict; use CGI qw/:standard/; use CGI::Cookie; my $mycookie = new CGI::Cookie(-name=>'user', -value=>'sample_value', +-expire=>'+1h', -path=>'/', -domain=>$ENV{HTTP_HOST}); print "Set-Cookie: $mycookie\n"; print "Location: otherfile.cgi\n\n";

I also tried with the following modes:
print redirect(-cookie=>$mycookie, -location=>'otherfile.cgi'); print redirect(-cookie=>$mycookie, -uri=>'otherfile.cgi'); print redirect(-cookie=>$mycookie, -url=>'otherfile.cgi'); print header(-cookie=>$mycookie, -url=>'otherfile.cgi'); print header(-url=>'otherfile.cgi', -cookie=>$mycookie);
... and lots of ways more..., instead of manually printing the headers...

The Problem: if I don't redirect the user, the cookie is set properly, but when I use redirecting, the cookie is not set at all!

Any help? Thanks so much.

In reply to YAWCP (yet another wierd cookies problem...) by jruiz

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.