I need to find the user activity in a SharePoint 2007 site such as viewing or downloading the document. How shall I do it?
3 Answers
msdn: Item-Level audit for developers Because Windows SharePoint Services does not provide the functionality to see entries that are written to the audit log, a developer must write code to enable the Windows SharePoint Services audit logging facility. A developer must also supply code and a user interface to read entries from the audit log and display this data to the site’s users. The sample code that accompanies this article shows how to create this type of custom auditing solution.
- 778
- 3
- 17
The Audit feature is there in Sharepoint 2007 foundation but there is no user interface associated for auditing in Sharepoint 2007 or 2010.
You can use Powershell to get the desired results
Check this link(This applies to Sharepoint 2007 also)
- 2,157
- 1
- 14
- 18
Read the following article: Configure audit settings for a site collection
Also, you can use 3-rd party solutions.
- 778
- 3
- 17
-
1The portal is built on sharepoint 2007 foundation. I am not getting the 'Site collection audit settings'. – Karthik Feb 25 '15 at 08:44