I am hosting with GoDaddy and i had to throw a page together real quick so that a friend can upload videos to my server with a web interface because they are too large to send via email. The problem is that the page works fine for images and SMALL video files, but after 9MB it will not work any more?
I called go daddy and they told me that there are default configuration limits, but that i am allowed to change them as i see fit, because they do not limit the size of the file that we can upload to our account, nor the execution time. They also provided me with this link:
http://help.godaddy.com/article/1475?
So i changed my config settings in the php.ini file that is in my webroot, and waited for about 20 minutes, and i still cannot upload anything larger than 9MB! Here are my settings with regards to file uploads:
max_input_time = 900
max_execution_time = 900
memory_limit = 100M
post_max_size = 90M
upload_max_filesize = 80M
I even confirmed this with this page here:
http://us2.php.net/ini.core
If you scroll down the page, you will come to this:
post_max_size integer
Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesize. If memory limit is enabled by your configure script, memory_limit also affects file uploading. Generally speaking, memory_limit should be larger than post_max_size . When an integer is used, the value is measured in bytes. Shorthand notation, as described in this FAQ, may also be used. If the size of post data is greater than post_max_size, the $POST and $FILES superglobals are empty. This can be tracked in various ways, e.g. by passing the $GET variable to the script processing the data, i.e. <form action="edit.php?processed=1">, and then checking if $GET['processed'] is set.
So it appears that i have my settings correct, but still, no luck. Any ideas?
Thanx
Also, there is NO input field for upload limit in the upload form, so i know that is not the problem.