Increase max_input_time to prevent file upload timeout
Without this change, users might experience timeouts during large file uploads, leading to a poor user experience and potential data loss. * Increase max_input_time from 120 to 300 to match max_execution_time Signed-off-by: Glenn <glenux@glenux.net>
This commit is contained in:
parent
f52664d880
commit
20a9abe04d
1 changed files with 1 additions and 1 deletions
|
@ -2,4 +2,4 @@ file_uploads = On
|
||||||
upload_max_filesize = 128M
|
upload_max_filesize = 128M
|
||||||
post_max_size = 128M
|
post_max_size = 128M
|
||||||
max_execution_time = 1200
|
max_execution_time = 1200
|
||||||
max_input_time = 120
|
max_input_time = 300
|
||||||
|
|
Loading…
Reference in a new issue