Re: Apache::RequestNotes and sharing information

2001-10-19 Thread Gerald Richter
>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

Apache::RequestNotes and sharing information

2001-10-18 Thread Chui G. Tey
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