I am trying to implement the file upload mechanism into a web page I'm building. I have the form setup with the proper tags and such (I basically copied the code from the manual page elsewhere on PHPBuilder).
It is partially working. I can select the file and then hit the submit button, and the file information is sent (I get the filename, filesize, the place on my server where the file is supposed to be) but the file never materializes.
In this case, I am using the defaults. The file should be uploaded to my /tmp directory, but nothing ever shows up. I can't figure out what I'm missing. I've checked my httpd.conf and php.ini files and don't see anything out of the ordinary. I'm trying to upload a file that is about 200K and I've set the limit to 10M in my php.ini file.
Has anyone run across this problem?
I'm running Apache under Linux.
Thanks!