]> git.mxchange.org Git - friendica-addons.git/blobdiff - piwik/README.md
„audon/lang/C“ hinzufügen
[friendica-addons.git] / piwik / README.md
index 9b35cc4bcc31233269b933e26e8dc93791d7425e..c7e57a0fa9178811394d69c999e0964be25aaa4a 100644 (file)
@@ -1,14 +1,14 @@
-Piwik Addon
+Matomo / Piwik Addon
 ============
 
 by Tobias Diekershoff and Klaus Weidenbach
 
-This addon allows you to embed the code necessary for the FLOSS webanalytics tool Piwik into the Friendica pages.
+This addon allows you to embed the code necessary for the FLOSS webanalytics tool Matomo (formerly known as Piwik) into the Friendica pages.
 
 Requirements
 ------------
 
-To use this addon you need a [piwik](http://piwik.org/) installation.
+To use this addon you need a [Matomo](https://matomo.org/) installation.
 
 Where to find
 -------------
@@ -22,22 +22,26 @@ The easiest way to configure this addon is by activating the admin panels of you
 
 If you don't want to use the admin panel, you can configure the addon through the `config/local.config.php` file.
 
-Open the `config/local.config.php` file and add "piwik" to the list of activated addons.
+Open the `config/node.config.php` file and add "piwik" to the list of activated addons.
 
-    'system' => [
-        ...
-        'addon' => '...,piwik'
-        ...
-    ]
+       'addons' => [
+               ...
+               'piwik' => [
+                       admin => true,                  
+               ],
+       ]
 
-You can change 4 more configuration variables for the addon in the `config/addon.config.php` file:
+You can change 5 more configuration variables for the addon in the `config/piwik.config.php` file:
 
-       'piwik' => [
-        'baseurl' => 'example.com/piwik/',
-        'sideid' => 1,
-        'optout' => true,
-        'async' => false,
-    ],
+       return [
+               'piwik' => [
+                       'baseurl' => 'example.com/piwik/',
+                       'sideid' => 1,
+                       'optout' => true,
+                       'async' => false,
+                       'shortendpoint' => false,
+               ],
+       ];
 
 Configuration fields
 ---------------------
@@ -47,7 +51,7 @@ Configuration fields
 * The *optout* parameter (true|false) defines whether or not a short notice about the utilization of Piwik will be displayed on every page of your Friendica site (at the bottom of the page with some spacing to the
 other content). Part of the note is a link that allows the visitor to set an _opt-out_ cookie which will prevent visits from that user be tracked by piwik.
 * The *async* parameter (true|false) defines whether or not to use asynchronous tracking so pages load (or appear to load) faster.
-
+* The *shortendpoint* parameter (true|false) defines whether or not to use a short path to the tracking script: "/js/" instead of "/piwik.js".
 Currently the optional notice states the following:
 
 >    This website is tracked using the Piwik analytics tool. If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out).