Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions php.ini-development
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,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.
; https://php.net/post-max-size
post_max_size = 8M
post_max_size = 50M

; Automatically add files before PHP document.
; https://php.net/auto-prepend-file
Expand Down Expand Up @@ -845,7 +845,7 @@ file_uploads = On

; Maximum allowed size for uploaded files.
; https://php.net/upload-max-filesize
upload_max_filesize = 2M
upload_max_filesize = 50M

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
Expand Down
4 changes: 2 additions & 2 deletions php.ini-production
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,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.
; https://php.net/post-max-size
post_max_size = 8M
post_max_size = 50M

; Automatically add files before PHP document.
; https://php.net/auto-prepend-file
Expand Down Expand Up @@ -847,7 +847,7 @@ file_uploads = On

; Maximum allowed size for uploaded files.
; https://php.net/upload-max-filesize
upload_max_filesize = 2M
upload_max_filesize = 50M

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
Expand Down