I have a script which uses move_uploaded_file. It works well with smaller files (i.e. <300K), but I recently tried uploading a file sized at 34mb and it comes up with a 'page not found' error on my server. The page is acually there, and works with the smaller files, but I think the script kind of loses its mind because of the length of the file.
Here's what I've done so far to remedy the problem:
ini_set("upload_max_filesize", '64M');
ini_set('memory_limit', '150M');
ini_set('max_execution_time', '800');
ini_set('post_max_size', '64M');
ini_set('max_input_time', '100');
Now at least the progress bar moves, but the dang thing still won't work. I will use this script on occasion to upload larger files, so it's gotta work.
Any ideas?