Re: pnotes and notes not working from Apache::Registry to handler

2003-07-17 Thread Mark Maunder
thanks. :) I've ploughed through the manual and I'm pretty sure I've been trying both notes and pnotes correctly. There's also a fairly common mistake of assuming you're dealing with the initial request, when in fact Apache-request is a sub-request and you need to use $r-main to retrieve the main

pnotes and notes not working from Apache::Registry to handler

2003-07-16 Thread Mark Maunder
Hi, I'm trying to store data about a user who has authenticated in $r-pnotes so that a perl logging phase handler can stick the user_id in the db. I call $r-pnotes('keyname' = 'somevalue'); in an apache registry script, and then call $r-pnotes('keyname') in the logging handler later on during the

Re: pnotes and notes not working from Apache::Registry to handler

2003-07-16 Thread Mark Maunder
Found this piece of info in the archives. I'm also running 1.27. Is this a known bug? http://groups.yahoo.com/group/modperl/message/45472 *snip* Subject: notes/pnotes broke between 1.25=1.27 So I got the advisory about the Apache servers having a security hole, so I decided to upgrade some

Re: pnotes and notes not working from Apache::Registry to handler

2003-07-16 Thread Dennis Stout
I'm trying to store data about a user who has authenticated in $r-pnotes so that a perl logging phase handler can stick the user_id in the db. I call $r-pnotes('keyname' = 'somevalue'); in an apache registry script, and then call $r-pnotes('keyname') in the logging handler later on during the