EDIT: After a bit of research, I found out that my Apache php conf file ((/etc/httpd/conf.d/php.conf) had a LimitRequestBody setting of 512k... I adjusted this to 32megs and restarted the webserver and it works fine.
I'm trying to do the basics..
<form enctype="multipart/form-data" action="upload.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
Send this file: <input name="userfile" type="file" />
<input type="submit" value="Send File" />
</form>
When I submit, I get a 404 -- I know the file exists.... Here are some php.ini settings:
post_max_size = 8M
file_uploads = On
upload_max_filesize = 10M
The file is only about 1.5 megs... Any clues on what I'm missing, configuration-wise here?