vote up 4 vote down star

I am sure there is a simple answer to this one.

I have a docx file that I get an error when trying to download(document cannot be found).... .doc is fine .txt is also fine. I am sure this is just an iis setting, the permissions on the server are all the same for all files.

flag

6 Answers

vote up 5 vote down check

Yes, it's just an IIS setting: by default, it will only serve files for which the extension matches a defined MIME type.

To allow .docx files to be downloaded, follow the steps from the KB article linked above:

  1. Open the IIS Microsoft Management Console (MMC), right-click the local computer name, and then click Properties.
  2. Click MIME Types.
  3. Click New.
  4. In the Extension box, type the file name extension that you want (in this case, .docx).
  5. In the MIME Type box, type application/msword.
  6. Apply the new settings. Note that you must restart the World Wide Web Publishing Service or wait for the worker process to recycle for the changes to take effect. In this example, IIS now serves files with the .docx extension.

Note that the KB article uses the generic application/octet-stream MIME type: although that generally should work, if a more specific MIME type exists, such as application/msword, it's always best to use that.

link|flag
vote up 0 vote down

This MimeType works for Uploading a .docx in Frefox.

But when I use MS.Internet Explorer to upload a .docx the Apache Server I am working on is interpreting the MimeType as application/octet-stream.

Which is crazy because thats the mimetype for .bin .exe and a whole host of trouble. There is no-way I am gonna ask my server tech to open up his system to allow people to upload .bin and .exe files to his server.

So I suggest to Microsoft that they should maybe do something about this before it gets out.

Hope no one gets bit by this one but is sounds a bit scarry to me.

link|flag
vote up 0 vote down

Bob's answers above are correct except he has the xlsx and the pptx MIMEs transposed. Switch them and they'll work.

link|flag
vote up 0 vote down

Thanks this is very useful.

If you are interested MIME type for .pptx (Powerpoint 2007) is

application/vnd.openxmlformats-officedocument.presentationml.presentation

and .xlsx (Excel 2007) is

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

[These where transposed. I have corrected now, thanks for pointing it out Sven.]

link|flag
vote up 6 vote down

In step 5 of the solution above you said

In the MIME Type box, type application/msword.

The "application/msword" MIME type is the type for the word 2003 ".doc" files. The correct MIME type for word 2007 ".docx" files is:

application/vnd.openxmlformats-officedocument.wordprocessingml.document

See this post.

link|flag
vote up 1 vote down

When there is no mime type associated with an extension in IIS (6.0 and up), it will give you 404. See Requests for static files return 404 error (IIS 6.0)

Other than that, and just because you did not specify where the error shows up: When you forbid caching in a header, similar behavior may occur on the client. But that is a general issue, and not bound to .docx.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.