diff --git a/php.ini-development b/php.ini-development index 8c3b1c7a7ba..d6bc11ae17e 100644 --- a/php.ini-development +++ b/php.ini-development @@ -433,6 +433,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 3f6ccbb23b0..0d6ca0f1444 100644 --- a/php.ini-production +++ b/php.ini-production @@ -435,6 +435,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