added DE translation for the morechoice addon
[friendica-addons.git/.git] / piwik / README.md
1 Piwik Addon
2 ============
3
4 by Tobias Diekershoff and Klaus Weidenbach
5
6 This addon allows you to embed the code necessary for the FLOSS webanalytics tool Piwik into the Friendica pages.
7
8 Requirements
9 ------------
10
11 To use this addon you need a [piwik](http://piwik.org/) installation.
12
13 Where to find
14 -------------
15
16 In the Friendica addon git repository `/piwik/piwik.php` and a CSS file for styling the opt-out notice.
17
18 Configuration
19 -------------
20
21 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.
22
23 If you don't want to use the admin panel, you can configure the addon through the config/local.ini.php file.
24
25 Open the config/local.ini.php file and add "piwik" to the list of activated addons.
26
27     [system]
28     addon = ...,piwik
29
30 You can change 4 more configuration variables for the addon in the config/addon.ini.php file:
31
32     [piwik]
33     baseurl = example.com/piwik/
34     sideid = 1
35     optout = true
36     async = false
37
38 Configuration fields
39 ---------------------
40
41 * The *baseurl* points to your Piwik installation. Use the absolute path, remember trailing slashes but ignore the protocol (http/s) part of the URL.
42 * Change the *sideid* parameter to whatever ID you want to use for tracking your Friendica installation.
43 * 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
44 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.
45 * The *async* parameter (true|false) defines whether or not to use asynchronous tracking so pages load (or appear to load) faster.
46
47 Currently the optional notice states the following:
48
49 >    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).
50
51 License
52 =======
53
54 The _Piwik addon_ is licensed under the [3-clause BSD license][3] see the LICENSE file in the addons directory.
55
56 [3]: http://opensource.org/licenses/BSD-3-Clause