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 02:10:39 +0400
committerbenakamoorthi <benaka.moorthi@gmail.com>2012-05-21 02:10:39 +0400
commit03c70ce9cab091c526fc4b2dfa632aca0b0d1ff4 (patch)
tree1571f40fd3a4850a7bf7fc0358e40f885af0f6f7 /config
parent3247b7c624cd831dd508f06c0d715d8aec145d76 (diff)
Fixes #3102, added config setting 'action_category_level_limit' as replacement for Piwik_Actions::$limitLevelSubCategory constant.
git-svn-id: http://dev.piwik.org/svn/trunk@6278 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 072b3cde5b..232558eab1 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -79,6 +79,12 @@ action_url_category_delimiter = /
; similar to above, but this delimiter is only used for page titles in the Actions > Page titles report
action_title_category_delimiter = /
+; the maximum url category depth to track. if this is set to 2, then a url such as
+; "example.com/blog/development/first-post" would be treated as "example.com/blog/development".
+; this setting is used mainly to limit the amount of data that is stored by Piwik.
+; note: this value is not allowed to be greater than Piwik_DataTable::MAXIMUM_DEPTH_LEVEL_ALLOWED.
+action_category_level_limit = 10
+
; minimum number of websites to run autocompleter
autocomplete_min_sites = 5