Check "upload_max_filesize" in .htaccess. if the provided file size is greater then specified, then $_FILES will not get anyting.
Thanks
Chetan sharma
2010-07-24 05:14:47
Check "upload_max_filesize" in .htaccess. if the provided file size is greater then specified, then $_FILES will not get anyting.
Thanks
You may be getting those errors when the form attempts to submit the file to the script, but there was no file sent to the script. Make sure you do checking prior for the $_FILES['uploadedfile'] to be set prior to trying to move an uploaded file out of the temp directory.
Your MAX_FILE_SIZE is only set to 100000 bytes, so it's only 97.65625KB, make sure the file you are uploading is less than that size. Otherwise as I recall, it does not submit the form.