Skip to content

Commit

Permalink
feat: 🔧 increse limits & vars
Browse files Browse the repository at this point in the history
- post_max_size = 512M
- memory_limit = 4096M
- max_input_vars = 6000
- max_multipart_body_parts = 12000
- max_input_nesting_level = 1200
  • Loading branch information
alchatti authored Mar 14, 2024
1 parent 7f37ff4 commit 3c9984a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions php.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
; # PHP Configurations
; file_uploads = On
upload_max_filesize = 64M
post_max_size = 64M
post_max_size = 512M
max_execution_time = 600
memory_limit = 2048M
max_input_vars = 3000
max_multipart_body_parts = 3000
max_input_nesting_level = 600
memory_limit = 4096M
max_input_vars = 6000
max_multipart_body_parts = 12000
max_input_nesting_level = 1200
display_errors = on
; session.cookie_secure = 0

Expand Down

0 comments on commit 3c9984a

Please sign in to comment.