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>