Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-05-02 01:27:23 +0400
committermattab <matthieu.aubry@gmail.com>2014-05-02 01:27:23 +0400
commitd9f631dcbec03a42c293b296d95fc307ad5523ed (patch)
treeacec53011a3d3d2d36772ab6af0d8212c78bea2a /config
parentd9d737d1e9ea95e469e244a08073af690d0bb88a (diff)
Allow to customise the idSite in which the Piwik usage data will be recorded.
This will be useful to keep the piwik.org web analytics reports clean of the demo usage stats
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index a25d60fb8e..cafd4ba47f 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -72,9 +72,10 @@ always_archive_data_range = 0;
; NOTE: you must also set [log] log_writers[] = "screen" to enable the profiler to print on screen
enable_sql_profiler = 0
-; if set to 1, a Piwik tracking code will be included in the Piwik UI footer and will track visits, pages, etc. to idsite = 1
+; if set to > 0, a Piwik tracking code will be included in the Piwik UI footer and will track visits, pages, etc.
+; data will be stored for idSite = enable_measure_piwik_usage_in_idsite
; this is useful for Piwik developers as an easy way to create data in their local Piwik
-track_visits_inside_piwik_ui = 0
+enable_measure_piwik_usage_in_idsite = 0
; if set to 1, javascript files will be included individually and neither merged nor minified.
; this option must be set to 1 when adding, removing or modifying javascript files
@@ -102,6 +103,12 @@ enable_processing_unique_visitors_month = 1
enable_processing_unique_visitors_year = 0
enable_processing_unique_visitors_range = 0
+; The list of periods that are available in the Piwik calendar
+; Example use case: custom date range requests are processed in real time,
+; so they may take a few minutes on very high traffic website. You may remove "range" below.
+enabled_periods_UI = "day,week,month,year,range"
+enabled_periods_API = "day,week,month,year,range"
+
; when set to 1, all requests to Piwik will return a maintenance message without connecting to the DB
; this is useful when upgrading using the shell command, to prevent other users from accessing the UI while Upgrade is in progress
maintenance_mode = 0