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
Users traceability log?
Re: Users traceability log?
did you look at site admin -> admin log?
Re: Users traceability log?
Of course!tsw wrote: did you look at site admin -> admin log?
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?
on one site I look after for I have log for most admin actions like
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
or I think mysql5 can keep a log of all select insert update clauses (but it will be kinda hard to read ;)
and Im logged in with admin username.pj 132 Memories Added Content Thu Nov 9, 2006 19:48:30
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');
