With all due respect and gratitude to the anonymous monk who responded above, I have now tried the following combinations to ascertain the issue here. None of them have been successful, as of yet. Neither $s->errstr(), nor $s->dump() have much to say for themselves. Only invoking my own handrolled ->log() method seems to give me any output. And the Data::Dumper output of the $self->{'s'} object reveals no error strings hiding in the hash. Any further wisdom available?

if(defined($self->{'s'})){ # $self->{'s'}->flush() or $self->log('WARNING','Failed attempt to f +lush session parameters for cgisess_' . $self->{'s'}->id() . ' to th +e file store: ' . $!); # $self->{'s'}->flush() or die 'Failed attempt to flush session para +meters for cgisess_' . $self->{'s'}->id() . ' to the file store: ' . + $!; $self->{'s'}->flush() or print STDERR 'Failed attempt to flush sessi +on parameters for cgisess_' . $self->{'s'}->id() . ' to the file sto +re: ' . CGI::Ses sion->errstr(); # $self->{'s'}->flush() or print STDERR 'Failed attempt to flush ses +sion parameters for cgisess_' . $self->{'s'}->id() . ' to the file s +tore: ' . $self->{'s'}->errstr(); } $self->{'s'}->dump(); CGI::Session->dump(); $self->log('DEBUG','Our session in the end reads: ',$self->{'s'});
if( $lal && $lol ) { $life++; }

In reply to Re: Failed attempt to flush CGI::Session parameters, huh ??? by hesco
in thread Failed attempt to flush CGI::Session parameters, huh ??? 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.