http://www.perlmonks.org?node_id=1032423


in reply to Re^6: Problems getting session management to work: is_expired seems to lie to me (cookies)
in thread Problems getting session management to work: is_expired seems to lie to me

WOW, that is like logic puzzles -- are you running on caffeine?

Add something like  print $query->escapeHTML( scalar Dumper( $query, $session ) ) after each start_html

start fresh browser session,

  1. visit one page,
  2. in another tab visit same page,
  3. then click the count link in another tab,
  4. click it again in another tab,
  5. wait 10 seconds (which you use for expire for testing), then click open count in another tab again
  6. then copy/paste ;CGISESSID=... and append to a url and open in another tab

compare each dumper to one another and you'll see
no cookie on 1st tab,
cookie on 2nd tab, same cookie on 3rd and 4th tab,
no cookie on 5th tab
no cookie on 6th tab

Many trip over cgi/cookies/sessions :) Basic cookie management (May 01) , Cookie login (pseudocode), PRG...

  • Comment on Re^7: Problems getting session management to work: is_expired seems to lie to me (cookies)
  • Download Code