I have a common problem in PHP : My $_FILES array is empty when files are too big.
php.ini :
max_execution_time = 300000
max_input_time = 600000000
memory_limit = 5100MB
post_max_size = 5000MB
upload_max_filesize = 5000MB
The file :
Trouve.tar : 910Mo
Configuration values are huge but I want to be sure that the script have the time and the memory to do the upload.
So, the authorized size is bigger than the file size, but I have the same error than other people (like problem with uploading the images with php file upload for exemple)
Have I missed some configuration setting ?