[pmwiki-users] ActionLog

Stéphane Heckel hsteph at club-internet.fr
Mon Nov 26 09:24:07 CST 2007


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('stephane at acme.com', '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 






More information about the pmwiki-users mailing list