Page 1 of 1
Users traceability log?
Posted: Mon Nov 13, 2006 4:12 pm
by saltydog
I am administering a cmsms site whith several registered users allowed to update contents. I am in the need to have a log to trace each user's access and modification performed... Is there any module available?
Thanks
Re: Users traceability log?
Posted: Mon Nov 13, 2006 7:51 pm
by tsw
did you look at site admin -> admin log?
Re: Users traceability log?
Posted: Mon Nov 13, 2006 8:22 pm
by saltydog
tsw wrote:
did you look at site admin -> admin log?
Of course!
That is the administrator log, but I don't need to trace my logs, but those of the other groups (content, news, etc...) that are not logged. More, that admin log does not trace the performed actions..
Re: Users traceability log?
Posted: Mon Nov 13, 2006 8:53 pm
by tsw
on one site I look after for I have log for most admin actions like
pj 132 Memories Added Content Thu Nov 9, 2006 19:48:30
and Im logged in with admin username.
some modules wont write into that log, but you cant really write a module to it either.
you need to add audit function to everyplace you want it in
Code: Select all
audit($user->id, $user->username, 'What the user did');
or I think mysql5 can keep a log of all select insert update clauses (but it will be kinda hard to read ;)