Increase upload limits

This commit is contained in:
Daniel Winzen
2017-08-06 10:57:56 +02:00
parent df22041c09
commit 2cda288913
3 changed files with 7 additions and 7 deletions

View File

@ -653,7 +653,7 @@ auto_globals_jit = On
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
post_max_size = 105M
post_max_size = 1G
; Automatically add files before PHP document.
; http://php.net/auto-prepend-file
@ -807,10 +807,10 @@ file_uploads = On
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 100M
upload_max_filesize = 1G
; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
max_file_uploads = 100
;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;