I have a php file upload script script, which works great for smaller files, but for some reason immediately generates a page not found error upon trying to upload any file larger than about 1 meg. I've verified and modified my settings in php.ini and have the following relevant settings:
file_uploads 1
upload_max_filesize 100M
post_max_size 100M
Here's the uploader (feel free to test it out): http://203.185.231.127/upload
login and pass: up
You can see the rest of my php settings here
http://203.185.231.127/phpinfo.php
That the page not found error shows up immediately makes me think it's a problem with Apache. It isnt the script because it works fine elsewhere and yep, it has the set_time_limit(0); at the top and <input type="hidden" name="MAX_FILE_SIZE" value="100097152"> in the upload form.
No one has been able to solve this, even on that site where they compete for points. $50 to anyone who can solve this utter crap.
Thanks in advance. here