friendica-addons/piwik/README.md

65 lines
2.5 KiB
Markdown
Raw Permalink Normal View History

2019-02-19 07:21:05 +01:00
Matomo / Piwik Addon
2013-06-01 17:30:44 +02:00
============
2013-06-01 17:35:06 +02:00
by Tobias Diekershoff and Klaus Weidenbach
2011-09-25 10:56:03 +02:00
2019-02-19 07:21:05 +01:00
This addon allows you to embed the code necessary for the FLOSS webanalytics tool Matomo (formerly known as Piwik) into the Friendica pages.
2011-09-25 10:56:03 +02:00
2013-06-01 17:30:44 +02:00
Requirements
------------
2011-09-25 10:56:03 +02:00
2019-02-19 07:21:05 +01:00
To use this addon you need a [Matomo](https://matomo.org/) installation.
2011-09-25 10:56:03 +02:00
2013-06-01 17:30:44 +02:00
Where to find
-------------
2011-09-25 10:56:03 +02:00
In the Friendica addon git repository `/piwik/piwik.php` and a CSS file for styling the opt-out notice.
2011-09-25 10:56:03 +02:00
2013-06-01 17:30:44 +02:00
Configuration
-------------
The easiest way to configure this addon is by activating the admin panels of your ~friendica server and then enter the needed details on the config page for the addon.
2018-11-25 08:15:18 +01:00
If you don't want to use the admin panel, you can configure the addon through the `config/local.config.php` file.
2023-01-05 02:38:54 +01:00
Open the `config/node.config.php` file and add "piwik" to the list of activated addons.
2011-09-25 10:56:03 +02:00
2023-01-05 02:38:54 +01:00
'addons' => [
...
'piwik' => [
admin => true,
],
]
2011-09-25 10:56:03 +02:00
2023-04-30 10:27:23 +02:00
You can change 5 more configuration variables for the addon in the `config/piwik.config.php` file:
return [
'piwik' => [
'baseurl' => 'example.com/piwik/',
'sideid' => 1,
'optout' => true,
'async' => false,
2023-04-30 10:27:23 +02:00
'shortendpoint' => false,
],
];
2011-09-25 10:56:03 +02:00
2013-06-01 17:30:44 +02:00
Configuration fields
---------------------
* The *baseurl* points to your Piwik installation. Use the absolute path, remember trailing slashes but ignore the protocol (http/s) part of the URL.
* Change the *sideid* parameter to whatever ID you want to use for tracking your Friendica installation.
* 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.
2023-04-30 10:27:23 +02:00
* The *shortendpoint* parameter (true|false) defines whether or not to use a short path to the tracking script: "/js/" instead of "/piwik.js".
2011-09-25 10:56:03 +02:00
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).
2011-09-25 10:56:03 +02:00
2013-06-01 17:35:06 +02:00
License
=======
The _Piwik addon_ is licensed under the [3-clause BSD license][3] see the LICENSE file in the addons directory.
2013-06-01 17:35:06 +02:00
[3]: http://opensource.org/licenses/BSD-3-Clause