FW: [Zope] click-stream collection and analysis with Zope??
seb bacon
seb@jamkit.com
Sat, 8 Sep 2001 13:14:02 +0100
The reference in the docs is a bit confusing. When they say 'the
logging module now allows multiple log files', they mean that it now
supports mod_log_config logging
http://httpd.apache.org/docs/mod/mod_log_config.html
Something like this should do the trick:
LogFormat "%{cookie}n %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
seb
* Chris McDonough <chrism@digicool.com> [010908 00:32]:
> I couldn't tell from the docs page on mod_usertrack how it integrated
> with the already-written access logs... it appears to write another log.
> If som, how do regular analysis tools analyze it?
> >>>From: seb bacon [mailto:seb@jamkit.com]
> >>>I use mod_usertrack in apache, combined with standard log analysis
> >>>tools. There's no need to reinvent all this stuff. mod_usertrack
> >>>does a pretty good job of guaranteeing unique ids. To integrate it
> >>>with zope, you can run reports on a cron job and view the HTML output
> >>>as a LocalFS view. Don't forget to make sure apache is proxying your
> >>>requests, or your cookies won't get set.
> >>>My latest newbie challenge...!
> >>>Has anyone implemented an extensive user tracking system with Zope?
> >>>