I\'m creating a form to upload video file, but I have a strange error.
My form is like this:
Efectively you have to change two parameters in PHP ini file
post_max_size = 100M
upload_max_filesize = 100M
But you may also want to change the apache abuse protection parameter (100M)
LimitRequestBody 1073741824
And by another hand, PHP have a time limit too of 30 sec per script, so your script will die at 30 seconds of running.
You may also want to increase the time to be sure your script does not die meanwhile you are uploading, copying etc,
set_time_limit(600); // 10 minutos execution