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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-01-14 11:12:31 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-01-14 11:12:31 +0300
commita71e13b9fbe1f5d658d585aea0c68106332d19bc (patch)
tree2001ff5f6460ea52f1585e94b297860a8a4782c7 /config
parent8d4baef479c2c30d5898622998f2e913b28096ac (diff)
fixed #268 Move dataTable truncation limit to the configuration file
Diffstat (limited to 'config')
-rwxr-xr-xconfig/global.ini.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index f7a9e2f0af..dfc22ffb9d 100755
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -64,7 +64,7 @@ PluginsInstalled[] = Installation
[Debug]
; if set to true, the archiving process will always be triggered, even if the archive has already been computed
; this is useful when making changes to the archiving code so we can force the archiving process
-always_archive_data = false
+always_archive_data = true
; if set to true, all the SQL queries will be recorded by the profiler
; and a profiling summary will be printed at the end of the request
@@ -125,6 +125,17 @@ login_cookie_name = piwik_auth
; login cookie expiration (30 days)
login_cookie_expire = 2592000
+; during archiving, Piwik will limit the number of results recorded, for performance reasons
+; maximum number of rows for any of the Referers tables (keywords, search engines, campaigns, etc.)
+datatable_archiving_maximum_rows_referers = 500
+; maximum number of rows for any of the Actions tables (pages, downloads, outlinks)
+datatable_archiving_maximum_rows_actions = 500
+
+; maximum number of rows for any of the Referers subtable (search engines by keyword, keyword by campaign, etc.)
+datatable_archiving_maximum_rows_subtable_referers = 50
+; maximum number of rows for pages in categories (sub pages, when clicking on the + for a page category)
+datatable_archiving_maximum_rows_subtable_actions = 100
+
[Tracker]
; set to 0 if you want to stop tracking the visitors. Useful if you need to stop all the connections on the DB.
record_statistics = 1