Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
PHP File Upload
Name: Clicker Date: January 5, 2005 at 12:53:13 Pacific OS: Linux CPU/Ram: 1.6Gig/ 512 Meg
Comment:
I posted this a while ago regarding PHP multiple file uplaod...here it is again
I have a form where multiple files are being uploaded. If the file size is less that 100K, all the files are uploaded otherwise I get a 404 Page not found error.
I have the post_max_size larger than file_upload_size...i have a hidden field with max_file_size set to 5Mbytes.
Name: Khalid Date: January 6, 2005 at 07:37:56 Pacific
Reply:
Wild guess... perhaps the machine running the php-engine is an oldie with little memory? Any error messages in $_FILES['userfile']['error'] wich may provide more information?
Summary: Hi, I am trying to get file uploads in PHP to work properly and I think I may be overlooking something obvious. I'm using MiniApache_PHP. It will let me upload small files (I tried small text files an...
Summary: I can think of a few possible causes... 1. You forgot to set post_max_size, which needs to be greater than max_upload_size. 2. Your script is timing out on larger downloads...Change script timeout t...