>The PerlAccessHandler sets a session_based cookie, using TIEHASH
>$r->pnotes("COOKIES")->{'SESSION_ID'} = $session{_session_id};
Unless you have already stored a hash ref in pnotes with key COOKIES, you
must write:
$r->pnotes("COOKIES", {'SESSION_ID' => $session{_session_id}}) ;
this stores a
I am using
RequestNotes with PerlAccessHandler and a PerlHandler.
When the browser
connects for the first time,
The
PerlAccessHandler sets a session_based cookie, using TIEHASH
$r->pnotes("COOKIES")->{'SESSION_ID'} =
$session{_session_id};
And the PerlHandler
retrieves the session_id us