I'm running Zend Server CE (http://www.zend.com/en/products/server-ce/) and i'm developing a project (Zend Framework) which requires uploading big files ( video, > 100MB ). I have been trying to configure php.ini according to numerous articles over the internet related to php configuration for big files uploads.:
file_uploads = On
upload_max_filesize = 200M
max_input_time = 1800
memory_limit = 256M
max_execution_time = 1800
post_max_size =204M
The problem is bigger files (over few MB) still can not be uploaded. I have also tried to use uploadify flash uploader (http://www.uploadify.com/), but when i try to upload bigger files (outside localhost) the problem persists. I have tried this with ready made samples from uploadify website, which means that the problem is not in my project.
I am probably not configuring the server properly for uploading big files.