>>> Programming >> PHP > PHP IIS6 Win2003 File Upload Troubleshooting (This page has been seen 492 times)
PHP IIS6 Win2003 File Upload Troubleshooting
If you are having problems uploading files to windows 2003 iis6 with a form post
with php. check the following
- Check that you have enctype=”multipart/form-data” in your form tag. It
should appear right after the <FORM> tag. And remember that it should be
double quotes. not ' quotes.
- Check that you have the method="post" in your form tag
- Check that the IUSR_computername has permission to write to the directory
you are trying to upload the file to
- Check Upload size. Maybe you are uploading something that is to big. Check the UPload Max Size in your PHP ini file.
Like
Dislike
Keywords for this article:
File Upload with PHP
Advertisement by Google
Comment:
Code Language:
Code:
Here you can paste a code example. It will then be processed by SyntaxHighlighter and formatted for easier readability.
Please remember to select the correct Code Language in the select above so the SyntaxHighlighter can highlight the code properly.
Code:
Please enter the code you see above
What is 9 + 4 =