text Piwik Matomo跟踪代码在Weblication中的实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Piwik Matomo跟踪代码在Weblication中的实现相关的知识,希望对你有一定的参考价值。

0 Deactivate Probable Google Analytics Tracking Code in Menu(1st Opt.)/Projektkonfiguration/Remove the field "Google™ Analytics (nur die ID, z.B. UA-123456-7)" 
1 Locate the includes.global.php configuration file in
/company-name-wGlobal/wGlobal/layout/templates/misc/includes.global.php 
or in /wGlobal/layout/templates/misc/includes.global.php
2 Make a backup of the includes.global.php file
3 Edit and Insert the following code inside an <xsl> tag or before a <meta> tag
<!-- Matomo -->
<script type="text/javascript">
  var _paq = _paq || [];
  /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="//matomo.fritsche-gmbh.de/";
    _paq.push(['setTrackerUrl', u+'piwik.php']);
    _paq.push(['setSiteId', '1']);
    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
    g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
  })();
</script>
<!-- End Matomo Code -->
4 Save changes 
5 Tools/Projekt Bereinigen/Projekt Cache Löschen 

以上是关于text Piwik Matomo跟踪代码在Weblication中的实现的主要内容,如果未能解决你的问题,请参考以下文章

使用 Piwik + Ruby on Rails 跟踪目标转换中的自定义变量

网站统计-Piwik

piwik源码安装部署

piwik安装部署最佳实践

Piwik:生成计数器图像以在外部站点上显示

Vue中使用matomo进行访问流量统计的实现