I'm running a file hosting web site on PHP, and my users experienced a problem uploading large files. They say that the script times out and returns a PHP error, though I want to make it so it can never time out. Would setting a negative value help? Here is what I currently have in my php.ini:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 3600 ; Maximum execution time of each script, in seconds
max_input_time = 999 ; Maximum amount of time each script may spend parsing request data
;max_input_nesting_level = 64 ; Maximum input variable nesting level
memory_limit = 999999999MB ; Maximum amount of memory a script may consume (128MB)
My connection timeout set for IIS is: 999,999,999
I also have HTTP Keep Alives enabled.
Is there a solution to this?