I apparently don't get it. FYI, the $self->{'q'} object isa 'CGI', and the $self->{'cfg'} isa Config::Simple.
$self->log('DEBUG',"The status is current. We now redirect to: +\n" . $self->{'cfg'}->param("www.dashboard")); $redirect = 1; $html = $self->{'q'}->redirect( uri => $self->{'cfg'}->param("www.dashboard"), status => 303 );
What I expect to see is the url in the location bar of my browser change from the account_creation page to the dashboard page. I also expect to see debug noise in the logs when dashboard is processed.

What I actually see is no change in the location bar, no noise in the log past the log message above, and an empty page with no content (not even html skeleton). Meanwhile if I open a neighboring tag on my dashboard, it opens as would be hoped, throwing anticipated noise into the logs, and apparently recognizing the session created by the create_account page.

What is it, please, I am missing about this CGI->redirect() method?

Any clues appreciated,

-- Hugh

if( $lal && $lol ) { $life++; }

In reply to CGI->redirect() won't, it seems. by hesco

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.