My workplace currently hosts a few hundred SharePoint sites and subsites with WSS 3.0 and we'd like to start tracking site activity using Google Analytics or PIWIK. Either tool uses a snippet of JavaScript that you enter before the closing </body> tag.

Now each site/subsite has a master page that we can manually add this to, but given the hundreds of sites and that most of them have many subsites with their own master pages, what is the best way to inject this tracking code?

Am I going about this the wrong way? It it normally standard practice to just review weblogs for SharePoint sites for this very reason? Can I automatically inject this snippet on all pages of all sites?

link|improve this question

feedback

3 Answers

You can include the code in your masterpage, or create a feature that includes a delegate control. The delegate control allows you to automatically insert a user control (.ascx file) into the header of your SharePoint pages. I used it to include a reference to jQuery, for example.

link|improve this answer
Thanks Kyle, but I'm not sure I understand. My goal is to find a way to automatically deploy this code to all sites/subsites. Can delegate controls do that or will I have to manually add one to every site and subsite? Or are they added to the whole installation? – Michael La Voie Aug 8 '11 at 18:28
The delegate control will handle that. All you'll need to do is activate the feature. – Kyle Trauberman Aug 8 '11 at 18:29
Thanks, I'm going to try that right now :) I'll report back – Michael La Voie Aug 8 '11 at 18:31
feedback

You can use the free SharePoint Infuser that uses the delegate control trick @Kyle is refering to to inject any code at runtime into all pages of a site collection.

Have a look at these examples.

I wrote this tool, so the usual disclaimers apply.

link|improve this answer
Very interesting, i'll give it a shot – Michael La Voie Aug 12 '11 at 20:18
feedback

You can include the tracking code in sharepoint init.js which located in c: \Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\1033. All sharepoint pages will load this javascript, so you can tracking all pages. such as:

var pkBaseURL = (("https:" ==      document.location.protocol) ? "https://testserver/Piwik/" : "http://testserver/Piwik/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js'   type='text/javascript'%3E%3C/script%3E"));
var piwikScript = "%3Cscript type='text/javascript' %3E\n";
piwikScript += "try{ \n";
piwikScript += "var piwikTracker = Piwik.getTracker(pkBaseURL + 'piwik.php', 1);\n";
piwikScript += "piwikTracker.trackPageView();\n";
piwikScript += "piwikTracker.enableLinkTracking();\n";
piwikScript += "} catch( err ) {}\n";
piwikScript += "%3C/script%3E";
document.write(unescape(piwikScript));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.