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>2013-03-08 09:32:40 +0400
committermattab <matthieu.aubry@gmail.com>2013-03-08 09:32:40 +0400
commitb089eac9beecc39581701cf7ed55ca119d6ce2cb (patch)
tree26aa5c8a135228c5af731951d5124788d1060bbd /config
parent62402bdad4053089a4491573b8a4aaf4703adcdd (diff)
Fixes #3803
New config setting for tracker: ; The window to look back for a previous visit by this current visitor. Defaults to visit_standard_length. ; If you are looking for higher accuracy of "returning visitors" metrics, you may set this value to 86400 or more. ; This is especially useful when you use the Tracking API where tracking Returning Visitors often depends on this setting. ; The value window_look_back_for_visitor is used only if it is set to greater than visit_standard_length window_look_back_for_visitor = 0
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 a7504287df..73294cfb62 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -356,6 +356,12 @@ record_statistics = 1
; after his last page view, it will be recorded as a new visit
visit_standard_length = 1800
+; The window to look back for a previous visit by this current visitor. Defaults to visit_standard_length.
+; If you are looking for higher accuracy of "returning visitors" metrics, you may set this value to 86400 or more.
+; This is especially useful when you use the Tracking API where tracking Returning Visitors often depends on this setting.
+; The value window_look_back_for_visitor is used only if it is set to greater than visit_standard_length
+window_look_back_for_visitor = 0
+
; visitors that stay on the website and view only one page will be considered as time on site of 0 second
default_time_one_page_visit = 0