summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-02-17 15:23:56 +0100
committerRemi Collet <remi@php.net>2023-02-17 15:23:56 +0100
commitd1d646a016493e488e11c311b21583c39d71772c (patch)
tree9ea5434aaf6b9dcc4bf4b18a64750cde318869ec
parentb755be10be66be203603669984b22befec4991d5 (diff)
add max_multipart_body_parts in php.ini
-rw-r--r--php.ini5
1 files changed, 5 insertions, 0 deletions
diff --git a/php.ini b/php.ini
index f62952e..fa92cd3 100644
--- a/php.ini
+++ b/php.ini
@@ -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