Problem uploading .docx through html form
Posted
by Mikael
on Stack Overflow
See other posts from Stack Overflow
or by Mikael
Published on 2010-03-24T07:41:17Z
Indexed on
2010/03/24
7:43 UTC
Read the original article
Hit count: 539
I've made a simple form, with the proper enctype for uploading files. When i try to upload a .docx everything works fine in IE 8 and Safari, but in Firefox or IE 7 or 6 i can't even click submit, nothing happens! Could this still be a server issue? It's an apache server.
Everything works fine if i choose to upload a .doc file
<form enctype="multipart/form-data" method="post" action="index.php">
<input name="file" type="file" />
<input type="submit" name="btnSubmit" value="Submit"/>
</form>
© Stack Overflow or respective owner