Hey,
I am having problems with different browsers when doing a post upload to a php script. The problem starts occuring when file sizes start getting large. The file never actually makes it to the script in these cases, and my script responds with a "no file selected.." type message.
I am using the:
<form ENCTYPE="multipart/form-data" ACTION="upload2.php" METHOD=POST name="NewFolder">
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="10000000">
form tags for the file input box.
I have the php.ini max filesize set to 10 megs. IE5.5 will post files all the way up to that point with no problem. Netscape 4.x, however, will start having problems around the 4 meg area. It acts like it is timing out. Is there some kind of timeout issue that I am not aware of? I am aware of the netscape not-selecting-a-file issue, but that's not it.
Any thought would be appreciated.
Thanks,
-Clark