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:
authorThomas Steur <tsteur@users.noreply.github.com>2018-12-04 08:49:15 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-12-04 08:49:15 +0300
commit332f42c8798685d1a7df425ebfa42b35937b9b5f (patch)
tree943b2cc35cc83e99a96c58454e8f9df4c45271c1 /config
parent12b522d23fa4fba633686792319a7aa02ed266e6 (diff)
Use db sessions by default, deprecate file session handler (#13540)
* use db sessions by default, deprecate file session handler * trying to fix tests
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 4b8fc9d975..06ab4e5200 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -371,9 +371,9 @@ disable_checks_usernames_attributes = 0
; For legacy data, fallback or non-security scenarios, we use md5.
hash_algorithm = whirlpool
-; by default, Matomo uses PHP's built-in file-based session save handler with lock files.
-; For clusters, use dbtable.
-session_save_handler = files
+; Matomo uses PHP's dbtable for session. As of Matomo 3.7.0 it is the only supported handler.
+; If you prefer configuring sessions through the php.ini directly, you may unset this value to an empty string
+session_save_handler = dbtable
; If set to 1, Matomo will automatically redirect all http:// requests to https://
; If SSL / https is not correctly configured on the server, this will break Matomo