Skip to content

Commit fd3cc17

Browse files
committed
Add max_multipart_body_parts info into php.ini files
1 parent 7b68ff4 commit fd3cc17

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

php.ini-development

+5
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,11 @@ max_input_time = 60
423423
; How many GET/POST/COOKIE input variables may be accepted
424424
;max_input_vars = 1000
425425

426+
; How many multipart body parts (combined input variable and file uploads) may
427+
; be accepted.
428+
; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
429+
;max_multipart_body_parts = 1500
430+
426431
; Maximum amount of memory a script may consume
427432
; https://php.net/memory-limit
428433
memory_limit = 128M

php.ini-production

+5
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,11 @@ max_input_time = 60
425425
; How many GET/POST/COOKIE input variables may be accepted
426426
;max_input_vars = 1000
427427

428+
; How many multipart body parts (combined input variable and file uploads) may
429+
; be accepted.
430+
; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
431+
;max_multipart_body_parts = 1500
432+
428433
; Maximum amount of memory a script may consume
429434
; https://php.net/memory-limit
430435
memory_limit = 128M

0 commit comments

Comments
 (0)