File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -62,33 +62,41 @@ download mode.
62
62
63
63
Known issues
64
64
------------
65
- Drupal requirements (https://drupal.org/requirements ) tell you to configure
65
+ Drupal requirements (https://drupal.org/requirements ) tell you to configure
66
66
PHP with "session.save_handler = user", but your Matomo installation may
67
67
not work with this configuration and gives you a server error 500.
68
68
69
69
1 . You are able to workaround with the PHP default in your php.ini:
70
70
71
+ ```
71
72
[Session]
72
73
session.save_handler = files
74
+ ```
73
75
74
76
2 . With Apache you may overwrite the PHP setting for the Matomo directory only.
75
77
If Matomo is installed in /matomo you are able to create a .htaccess file in
76
78
this directory with the below code:
77
79
78
- # PHP 4, Apache 1.
80
+ #### PHP 4, Apache 1.
81
+ ```
79
82
<IfModule mod_php4.c>
80
- php_value session.save_handler files
83
+ php_value session.save_handler files
81
84
</IfModule>
85
+ ```
82
86
83
- # PHP 4, Apache 2.
87
+ #### PHP 4, Apache 2.
88
+ ```
84
89
<IfModule sapi_apache2.c>
85
90
php_value session.save_handler files
86
91
</IfModule>
92
+ ```
87
93
88
- # PHP 5, Apache 1 and 2.
94
+ #### PHP 5, Apache 1 and 2.
95
+ ```
89
96
<IfModule mod_php5.c>
90
97
php_value session.save_handler files
91
98
</IfModule>
99
+ ```
92
100
93
101
Issues
94
102
------
You can’t perform that action at this time.
0 commit comments