Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 12.4] Activate JIT compiler #396

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions Documentation/SystemRequirements/PHP.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ Configure

The following settings need to be set in the installations :file:`php.ini`

.. code-block:: ini
:caption: php.ini
.. code-block:: ini
:caption: php.ini

; memory_limit >= 256MB
memory_limit=256M

; memory_limit >= 256MB
memory_limit=256M
; max_execution_time >= 240 seconds
max_execution_time=240

; max_execution_time >= 240 seconds
max_execution_time=240
; max_input_vars >= 1500
max_input_vars=1500

; max_input_vars >= 1500
max_input_vars=1500
; PHP JIT compiler must be activated. Needed for proper Fluid parsing
pcre.jit=1

The following settings control the maximum upload file size (and should be
adapted if necessary):
Expand Down
Loading