Skip to content

Commit f2daaea

Browse files
committed
Merge branch 'PHP-8.2'
2 parents bb7dca3 + a4fe8f7 commit f2daaea

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

Diff for: php.ini-development

+5
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,11 @@ max_input_time = 60
433433
; How many GET/POST/COOKIE input variables may be accepted
434434
;max_input_vars = 1000
435435

436+
; How many multipart body parts (combined input variable and file uploads) may
437+
; be accepted.
438+
; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
439+
;max_multipart_body_parts = 1500
440+
436441
; Maximum amount of memory a script may consume
437442
; https://php.net/memory-limit
438443
memory_limit = 128M

Diff for: php.ini-production

+5
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,11 @@ max_input_time = 60
435435
; How many GET/POST/COOKIE input variables may be accepted
436436
;max_input_vars = 1000
437437

438+
; How many multipart body parts (combined input variable and file uploads) may
439+
; be accepted.
440+
; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
441+
;max_multipart_body_parts = 1500
442+
438443
; Maximum amount of memory a script may consume
439444
; https://php.net/memory-limit
440445
memory_limit = 128M

0 commit comments

Comments
 (0)