Intranet Software, Extranet Software, Corporate Intranets & Extranets
Translations of this page:

Piwik

Piwik

Piwik is a third-party downloadable, open source (GPL licensed) web analytics software program. It can be installed within your Intranet to provides you with detailed reports on your intranet visitors such as the most popular pages. Unlike Google Analytics, Piwik is a PHP MySQL software program that you download and install on your own webserver.

Javascript Code

Piwik javascript code must be embeded onto your main customised htmlfooter.html page just above closing body tag

/interface_custom/common/htmlfooter.html

Known Issue

It has been discovered that standard footer page provided by PIWIK has caused problem with Calendar application in IE7.

Standard PIWIK footer code:

 
<!-- Piwik -->
<a href="http://piwik.org" title="Web 2.0 analytics" onclick="window.open(this.href);return(false);">
<script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://www.yourintranet.com/intranet/piwik/" : "http://www.yourintranet.com/intranet/piwik/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
</script><script type="text/javascript">
piwik_action_name = '';
piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
</script>
<object><noscript><p>Web 2.0 analytics <img src="http://www.yourintranet.com/intranet/piwik/piwik.php?idsite=1" style="border:0" alt=""/></p></noscript></object></a>
<!-- End Piwik Tag -->

Suggested modification by removing noscript part

<!-- Piwik -->
<script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://www.yourintranet.com/intranet/piwik/" : "http://www.yourintranet.com/intranet/piwik/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
</script><script type="text/javascript">
piwik_action_name = '';
piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
</script>
<!-- End Piwik Tag -->
 
help/third_party/analytics/piwik.txt · Last modified: 07/06/2011 04:49 by mike
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki