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:
authorbenakamoorthi <benaka.moorthi@gmail.com>2012-05-21 05:28:30 +0400
committerbenakamoorthi <benaka.moorthi@gmail.com>2012-05-21 05:28:30 +0400
commit225cddaf0b800ad643483de26de034eb68bba069 (patch)
tree0fafef1f1a049e363be2cade464d4f962c985936 /config
parent2e5f457766c29221ff0c72bc37e718fbac9ffc9f (diff)
Fixes #3122, added enable_processing_unique_visitors_day, enable_processing_unique_visitors_week, enable_processing_unique_visitors_month config settings and split up the existing enable_processing_unique_visitors_year_and_range setting.
git-svn-id: http://dev.piwik.org/svn/trunk@6280 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 232558eab1..f7ae445b5e 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -62,10 +62,15 @@ disable_merged_assets = 0
tracker_always_new_visitor = 0
[General]
-; if set to 1, Unique Visitors will be processed for Years and Date Ranges
-; disabled by default, to ensure optimal performance for high traffic Piwik instances
-; if you set it to 1 and want the Unique Visitors to be re-processed in for reports in the past, drop all piwik_archive_* tables
-enable_processing_unique_visitors_year_and_range = 0
+; the following settings control whether Unique Visitors will be processed for different period types.
+; year and range periods are disabled by default, to ensure optimal performance for high traffic Piwik instances
+; if you set it to 1 and want the Unique Visitors to be re-processed for reports in the past, drop all piwik_archive_* tables
+; it is recommended to always enable Unique Visitors processing for 'day' periods
+enable_processing_unique_visitors_day = 1
+enable_processing_unique_visitors_week = 1
+enable_processing_unique_visitors_month = 1
+enable_processing_unique_visitors_year = 0
+enable_processing_unique_visitors_range = 0
; 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