which php ini parameters affect the size and time of uploading files to the server
max_input_time (separate from max_execution_time!) maximum script execution time
upload_max_filesize maximum time it takes to upload a file
post_max_size maximum size of data sent via post
there's also another parameter for the maximum total number of variables
and there's a limit on the maximum number of simultaneously uploaded files
memory_limit limit on memory usage
Comments