Skip to content

Commit f2419cd

Browse files
committed
Updated the README again
1 parent 10299f0 commit f2419cd

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,33 +62,41 @@ download mode.
6262

6363
Known issues
6464
------------
65-
Drupal requirements (https://drupal.org/requirements) tell you to configure
65+
Drupal requirements (https://drupal.org/requirements) tell you to configure
6666
PHP with "session.save_handler = user", but your Matomo installation may
6767
not work with this configuration and gives you a server error 500.
6868

6969
1. You are able to workaround with the PHP default in your php.ini:
7070

71+
```
7172
[Session]
7273
session.save_handler = files
74+
```
7375

7476
2. With Apache you may overwrite the PHP setting for the Matomo directory only.
7577
If Matomo is installed in /matomo you are able to create a .htaccess file in
7678
this directory with the below code:
7779

78-
# PHP 4, Apache 1.
80+
#### PHP 4, Apache 1.
81+
```
7982
<IfModule mod_php4.c>
80-
php_value session.save_handler files
83+
php_value session.save_handler files
8184
</IfModule>
85+
```
8286

83-
# PHP 4, Apache 2.
87+
#### PHP 4, Apache 2.
88+
```
8489
<IfModule sapi_apache2.c>
8590
php_value session.save_handler files
8691
</IfModule>
92+
```
8793

88-
# PHP 5, Apache 1 and 2.
94+
#### PHP 5, Apache 1 and 2.
95+
```
8996
<IfModule mod_php5.c>
9097
php_value session.save_handler files
9198
</IfModule>
99+
```
92100

93101
Issues
94102
------

0 commit comments

Comments
 (0)