Had a form working fine (and still is) but files over a certain size just fail on an empty $_FILES.
I can upload 10Mb files, 60Mb and even 101MB but the file I really want to upload is 120MB and the upload just fails with an empty $_FILES.
The php.ini are set:
file_uploads = On
post_max_size = 750M
upload_max_filesize = 500M
max_execution_time = 500
include_path = .:/usr/local/lib/php
auto_prepend_file = config.php
But the largest file just fails. I have read that my /tmp directory might be full but the only /tmp dir is in the same directory as public_html and this dir has not very much in it apart from awstats and webalizer.
Any help?
phpinfo()is that definitely the php.ini that gets used? (Long shot I know) – Martin Lyne Oct 26 '12 at 12:29upload_max_filesize... – simone Oct 26 '12 at 12:30max_input_time- see our nice site: stackoverflow.com/search?q=%5Bphp%5D+max_input_time --- Hint 2: Do error logging. Look inside your PHP error log. "Just Fails" is not a proper error description if you're looking for help. Hint 3: Other PHP extensions might interfer with your configuration. E.g. security protections. You find out with PHP error logging. Hint 4: Check the server error log in case your server brings the request to an end. Then this is unrelated to PHP. – hakre Oct 26 '12 at 12:40