From 1325acc6828690b8d8f10eac5443ee8b89692962 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Fri, 17 Feb 2023 15:23:29 +0100
Subject: add max_multipart_body_parts in php.ini

---
 php.ini | 5 +++++
 1 file changed, 5 insertions(+)

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
-- 
cgit