Can I set the following PHP configuration parameters as follows:
max_execution_time = 360 max_input_time 360
Is that safe and efficient ?
I actually
In my case, max_input_time does affect my move_uploaded_file function. I failed to upload a 3GB file with default setting (max_input_time=60) but it succeeded with a larger value (max_input_time=300).
max_input_time
move_uploaded_file
max_input_time=60
max_input_time=300
My PHP version is 7.2.19 on LAMP enviroment.