I think it might be a problem with the mime-types on the server. I uploaded a docx file using your form, then downloaded it and checked the mime-type in the headers from your server, and it came back as:
Content-Type: text/plain; charset=UTF-8
I uploaded the same docx file (using a Gravity Form) to a server of mine, and the mime type in the headers came back:
Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
If the mime type is incorrect I think the browser guesses, and a docx file is a container that includes a zip archive. Maybe Chrome is guessing differently than other programs. The fact that it works when you receive a DOCX in your email program leads me to believe it's not your computer. It's not relying on the mime-type from your server at that point.
Background info on the DOCX format:
http://www.forensicswiki.org/wiki/Word_Document_%28DOCX%29
To work around it on this server, you could require the resume in PDF or DOC format, or you might have to contact your host or sysadmin to have the mime-types updated, either globally or in your .htaccess file. The same problem will happen with any of the Office XML formats.
How to fix it with .htaccess:
http://www.webdeveloper.com/forum/showthread.php?t=162526
p.s. you can delete my job application :-)
Posted 14 years ago on Monday November 22, 2010 |
Permalink