PerlLogHandler and mod_usertrack

2000-06-15 Thread Jim Sproull
Hi all, I'm looking to using mod_usertrack to log requests based on cookies (which it's good at, of course). I have this all in and working fine. However, I'm using my own PerlLogHandler to handle all the logging. mod_usertrack allows a CustomLog variable called %{cookie}n which contains

Re: PerlLogHandler and mod_usertrack

2000-06-15 Thread Ian Kallen
If you're writing your own PerlLogHandler, get the cookie from the request object, $r-header_in('Cookie') -Ian Today, Jim Sproull [EMAIL PROTECTED] frothed and gesticulated about...: I'm looking to using mod_usertrack to log requests based on cookies (which it's good at, of course). I have

Re: PerlLogHandler and mod_usertrack

2000-06-15 Thread Ian Kallen
Hi Jacob! Difference being that if you change your cookie'ing to use something other than mod_usertrack, you'll have to make sure it also creates that key for it in the notes table otherwise your PerlLogHandler won't see it. $r-header_in('Cookie') should always be there for slicing and dicing...

Re: PerlLogHandler and mod_usertrack

2000-06-15 Thread Jacob Davies
On Thu, Jun 15, 2000 at 10:23:38AM -0700, Ian Kallen wrote: Hi Jacob! Hi Ian! Difference being that if you change your cookie'ing to use something other than mod_usertrack, you'll have to make sure it also creates that key for it in the notes table otherwise your PerlLogHandler won't see

RE: PerlLogHandler and mod_usertrack

2000-06-15 Thread Jim Sproull
-Original Message- From: Jacob Davies [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 15, 2000 1:46 PM To: Ian Kallen Cc: Jim Sproull; [EMAIL PROTECTED] Subject: Re: PerlLogHandler and mod_usertrack Hi Guys! On Thu, Jun 15, 2000 at 10:23:38AM -0700, Ian Kallen wrote: Hi