Hi everyone,
I'm trying to upload an mp4 file on my localhost. The page continuously loads until giving me a Request Timeout.
The file is 17Mb. I've tested an image file which is 95Kb and that uploads fine.
I've changed various settings in my php.ini which I can see have taken effect via php_info().
file_uploads: On
max_input_time: 300
max_execution_time: 300
post_max_size: 257M
upload_max_filesize: 256M
and for Apache
Timeouts: Connection: 3600 - Keep-Alive: 5
The page loading seems to be mainly associated with the Apache setting which was orignally 60 seconds and is now reaching the hour due to the new setting.
I'm sure the file shouldn't take this long to upload or am I wrong in that assumption?
What else do I need to tinker with to get the file to upload?