|
1 |
| -; This file is for CGI/FastCGI installations. |
2 |
| -; Try copying it to php5.ini, if it doesn't work |
| 1 | +; This file is for CGI/FastCGI installations |
| 2 | +; Try copying it to php7.ini or php8 if it doesn't work |
3 | 3 |
|
4 |
| -; adjust memory limit |
| 4 | +; Adjust memory limit |
5 | 5 |
|
6 | 6 | memory_limit = 64M
|
7 |
| - |
8 | 7 | max_execution_time = 18000
|
9 | 8 |
|
10 |
| -; disable magic quotes for php request vars |
| 9 | +; Disable magic quotes for PHP request vars |
11 | 10 |
|
12 | 11 | magic_quotes_gpc = off
|
13 | 12 |
|
14 |
| -; disable automatic session start |
15 |
| -; before autoload was initialized |
| 13 | +; Disable automatic session start before autoload was initialized |
16 | 14 |
|
17 | 15 | flag session.auto_start = off
|
18 | 16 |
|
19 |
| -; enable resulting html compression |
| 17 | +; Enable resulting html compression |
20 | 18 |
|
21 | 19 | zlib.output_compression = on
|
22 | 20 |
|
23 |
| -; disable user agent verification to not break multiple image upload |
| 21 | +; Disable user agent verification to not break multiple image upload |
24 | 22 |
|
25 | 23 | suhosin.session.cryptua = off
|
26 | 24 |
|
27 |
| -; turn off compatibility with PHP4 when dealing with objects |
28 |
| - |
29 |
| -zend.ze1_compatibility_mode = off |
30 |
| - |
31 |
| -; PHP for some reason ignores this setting in system php.ini |
32 |
| -; and disables mcrypt if this line is missing in local php.ini |
| 25 | +; If this line is missing in local php.ini for some reason PHP ignores this setting in system php.ini and disables mcrypt |
33 | 26 |
|
34 | 27 | extension=mcrypt.so
|
35 | 28 |
|
36 |
| -; Disable PHP errors, notices and warnings output in production mode to prevent exposing sensitive information. |
| 29 | +; Disable PHP errors, notices and warnings output in production mode to prevent exposing sensitive information |
37 | 30 |
|
38 | 31 | display_errors = Off
|
0 commit comments