I have tested the VisitorsLogging cookbook as well and tuned the cookbook to 
skip events from
- a particular AuthId (I'm using ldap)
- groups
in order to minimize the logfile size.

...
SDV($VisitorsLoggingIgnoreAuthId, array('[EMAIL PROTECTED]', 'steph'));
SDV($VisitorsLoggingIgnoreGroup, array('Main', 'Blog'));
...

if (in_array($AuthId, $VisitorsLoggingIgnoreAuthId) == true) return;
if (in_array(FmtPageName('$Group', $pagename), $VisitorsLoggingIgnoreGroup) 
== true) return;

It works great!

SH 




_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to