views:

129

answers:

2

Hi,

I am running a classic ASP website where my online users can attach files to the internal message system. But whenever they upload an attachment with more then 3 characters in the fil extension, the server gives me a 404?

Files like mypicture.jpg works fine, but files like mydocument.docx doesn't work?

Any suggestions?

Best regards, Joakim

A: 

The server probably has no mime-type defined for docx and such file extensions.

Oded
+3  A: 

IIS6 will only serve documents where the file extension is mapped to a mime type in the mime map property for the server or the site. In order to serve the more recent Office 2007 document types you will need to add extra mappings.

There are a number of places where you can find a list of these new mime types.

This is a simple one:- office 2007 mime types for iis

AnthonyWJones