From fd3cc17cbdca9f3fabb3780ce043ca9c1e91387e Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Fri, 17 Feb 2023 13:21:18 +0000 Subject: [PATCH] Add max_multipart_body_parts info into php.ini files --- php.ini-development | 5 +++++ php.ini-production | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/php.ini-development b/php.ini-development index e61f19b87ca..c1aca130c38 100644 --- a/php.ini-development +++ b/php.ini-development @@ -423,6 +423,11 @@ max_input_time = 60 ; How many GET/POST/COOKIE input variables may be accepted ;max_input_vars = 1000 +; How many multipart body parts (combined input variable and file uploads) may +; be accepted. +; Default Value: -1 (Sum of max_input_vars and max_file_uploads) +;max_multipart_body_parts = 1500 + ; Maximum amount of memory a script may consume ; https://php.net/memory-limit memory_limit = 128M diff --git a/php.ini-production b/php.ini-production index 73a4db3c31b..a90451fe6dc 100644 --- a/php.ini-production +++ b/php.ini-production @@ -425,6 +425,11 @@ max_input_time = 60 ; How many GET/POST/COOKIE input variables may be accepted ;max_input_vars = 1000 +; How many multipart body parts (combined input variable and file uploads) may +; be accepted. +; Default Value: -1 (Sum of max_input_vars and max_file_uploads) +;max_multipart_body_parts = 1500 + ; Maximum amount of memory a script may consume ; https://php.net/memory-limit memory_limit = 128M