Skip to content

Commit a4fe8f7

Browse files
committed
Merge branch 'PHP-8.1' into PHP-8.2
2 parents 81f3fcd + fd3cc17 commit a4fe8f7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

php.ini-development

Lines changed: 5 additions & 0 deletions
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

Lines changed: 5 additions & 0 deletions
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)