Similar to file extensions but more universally accepted, "MIME types" are used to identify the type of information that a file contains. While the file extension .html is informally understood to mean that the file is an HTML page, there is no requirement that it mean this, and many HTML pages have ...
47
votes
14answers
56k views
Debug message “Resource interpreted as other but transferred with MIME type application/javascript”
OK, I understand what the messages means, but I'm really not sure what's causing it. I'm using Safari and the Web Inspector on Mac OS X, by the way.
I've got the following in my document head:
...
44
votes
9answers
31k views
Using .NET, how can you find the mime type of a file based on the file signature not the extension
I am looking for a simple way to get a mime type where the file extension is incorrect or not given, something similar to this question only in .Net.
41
votes
5answers
11k views
What is the Javascript MIME Type? What belongs in the type attribute of a script tag?
What is the MIME type of javascript?
More specifically, what is the right thing to put in the "type" attribute of a script tag? application/x-javascript and text/javascript seem to be the main ...
40
votes
8answers
36k views
Chrome says “Resource interpreted as script but transferred with MIME type text/plain.”, what gives?
In FF and all, my javascript works fine. But in Chrome it gives this message: "Resource interpreted as script but transferred with MIME type text/plain."
I have checked all the script tags and they ...
37
votes
1answer
4k views
Asp.net MVC page is giving Mime type warnings for image files
While I do not see any functionally or jquery UI elements affected by this, but when I access my asp.net mvc web page the chrome developer console is logged with a bunch of error messages like so:
...
26
votes
5answers
5k views
What is the difference between “image/png” and “image/x-png”?
What is the difference between "image/png" and "image/x-png"?
23
votes
4answers
38k views
Downloading Docx from IE - Setting MIME Types in IIS
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 ...
22
votes
8answers
12k views
Determine file type in Ruby
How does one reliably determine a file's type? File extension analysis is not acceptable. There must be a rubyesque tool similar to the UNIX file(1) command?
This is regarding MIME or content type, ...
20
votes
4answers
5k views
What is the correct MIME type to use for an RSS feed?
Is one MIME type preferable to ensure compatibility with RSS readers and other scrapers?
The options seem to be:
text/xml
text/rss+xml
Interestingly Stackoverflow is using text/html.
18
votes
5answers
2k views
HTML 4, HTML 5, XHTML, MIME types - the definitive resource
The topics of HTML vs. XHTML and XHTML as text/html vs. XHTML as XHTML are quite complex. Unfortunately it's hard to get a complete picture, since information is spread mostly in bits and pieces ...
16
votes
4answers
4k views
Determine file type of an image
I'm downloading some images from a service that doesn't always include a content-type and doesn't provide an extension for the file I'm downloading (ugh, don't ask).
What's the best way to determine ...
15
votes
2answers
370 views
is “<script type='text/javascript'>” incorrect?
On aminutewithbrendan, brendan eich makes an off hand comment implying that serving scripts as
<script type='text/javascript'></script>
is not correct because "text/javascript" is not a ...
15
votes
4answers
3k views
YAML mime type?
What is the most appropriate MIME type to use when sending data structured with YAML over HTTP?
An explanation of why a given choice is most appropriate would be much appreciated.
There is no ...
14
votes
1answer
2k views
Maximum MIMEType Length when storing type in DB
What are people using as the length of a MIMEType field in their databases? The longest one we've seen so far is 72 bytes:
application/vnd.openxmlformats-officedocument.wordprocessingml.document
...
13
votes
5answers
15k views
“not well-formed” error in Firefox when loading JSON file with XMLHttpRequest
I'm getting a "not well-formed" error in the error console of Firefox 3.0.7 when the JavaScript on my page loads a text file containing an object in JavaScript Object Notation format. If the file ...
13
votes
3answers
16k views
How to check file types of uploaded files in PHP?
On the PHP website, the only real checking they suggest is using is_uploaded_file() or move_uploaded_file(), here. Of course you usually don't want user's uploading any type of file, for a variety of ...
11
votes
9answers
974 views
How do I tell if someone's faking a filetype? (PHP)
I'm programming something that allows users to store documents and pictures on a webserver, to be stored and retrieved later. When users upload files to my server, PHP tells me what filetype it is ...
10
votes
2answers
2k views
jQuery or JavaScript: Get MIME Type from URL
I would like to detect the MIME type of a file on the client side of my application using jQuery or JavaScript. Is there a way to do this?
Thanks.
10
votes
2answers
2k views
What is a correct mime type for docx, pptx etc?
For older *.doc documents this was enough:
header("Content-Type: application/msword");
What mime type should I use for new docx documents? Also for pptx and xlsx documents?
10
votes
4answers
1k views
What Content-Type value should I send for my XML sitemap?
I thought I should send "text/xml", but then I read that I should send "application/xml". Does it matter? Can someone explain the difference?
10
votes
3answers
4k views
ASP.NET/IIS6: How to search the server's mime map?
i want to find the mime-type for a given file extension on an IIS ASP.NET web-server from the code-behind file.
i want to search the same list that the server itself uses when serving up a file. ...
9
votes
1answer
2k views
Setting MIME types using the ASP.NET Development Server
I added the following to the web.config file, but this seems to be ignored by the development server thats built into Visual Studio 2010. Does anyone know how to alter the MIME types in the ...
9
votes
2answers
3k views
Unknown file type MIME?
Do I have to specify a MIME type if the uploaded file has no extension?
In other words is there a default general MIME type?
9
votes
10answers
3k views
File Extension to MIME Type Web Service?
Are there any web services which will allow me to provide a file extension and it would return a list of possible MIME types?
For example:
http://mimetype.com/getMime/doc
Which could return:
...
8
votes
1answer
1k views
Find all registered mime-types / url scheme protocols (intent filters) on iOS ( iPhone / iPad / iPod )
I'm a mobile web developer, and I'd like to test a few iOS devices to see what mime-types and url schemes the average iOS device can accept.
On Android I'm able to install an app called ...
8
votes
2answers
587 views
How to add custom mime type?
What I want: To be able to send my custom file by mail and import it with my application from the preview button in GMail or when opening it in a file browser.
What I know: I've read a lot of custom ...
8
votes
4answers
2k views
Javascript MIME Type
Based on this question: http://stackoverflow.com/questions/4100872/jquery-code-not-working-in-ie
So text/javascript is used in html documents so internet explorer understands it aswell. But I was ...
8
votes
4answers
10k views
Rendering file with MIME Type in rails
Here's the code:
render :file => @somedir + "/blah.xml"
...but the resulting MIME type is text/html when I check in FireBug. How do I specify a MIME type in this case?
7
votes
2answers
75 views
How to be sure they are uploading certain files
Ok, I am allowing (within a script) for certain types of files to be uploaded via an Forum Admin Defined approach! How can I tell if these files are of the type that the Admin has set to be sure they ...
7
votes
4answers
1k views
Why write <script type=“text/javascript”> when the mime type is set by the server?
My understanding is that mime types are set by the web server. Why do we add the type="text/javascript or type="text/css" attribute? Isn't this a useless and ignored attribute?
7
votes
5answers
1k views
Asp.Net MVC2 RenderAction changes page mime type?
It appears that calling Html.RenderAction in Asp.Net MVC2 apps can alter the mime type of the page if the child action's type is different than the parent action's.
The code below (testing in MVC2 ...
7
votes
4answers
2k views
Stop Eclipse/Subversive from setting svn:mime-type to text/plain on initial commit
How do I stop Subversive from setting svn:mime-type to text/plain on initial commit?
My Java code is being checked into my repository with the svn:mime-type property set as text/plain, and as a ...
7
votes
7answers
6k views
PHP how can i check if a file is mp3 or image file?
how can i check if a file is an mp3 file or image file, other than check each possible extension?
7
votes
2answers
2k views
Is there an enum for the ContentType property on a HttpWebResponse (“text/plain”, “application/octet-stream” etc.)?
The closest thing I could find was System.Net.Mime.MediaTypeNames but that doesn't seem to have everything (like json) since it seems to be more focused around email attachments.
7
votes
2answers
2k views
What is the best mime-type and extension to use when exporting tab delimited?
I've come across the problem where Excel will not play nice with UTF-8 encoded CSV files. See this related question on Stack Overflow.
I've followed the solution of exporting as UTF-16, however it ...
7
votes
5answers
3k views
What is the difference between: image/x-citrix-pjpeg and image/pjpeg
Some files are uploaded with a reported MIME type:
image/x-citrix-pjpeg
They are valid jpeg files and I accept them as such.
I was wondering however: why is the MIME type different?
Is there any ...
7
votes
4answers
9k views
change mime type of output in php
I've got a php script. Most of the time the script returns html, which is working fine, but on one occasion (parameter ?Format=XML) the script returns XML instead of HTML.
Is there any way to change ...
6
votes
1answer
169 views
How to ensure that an uploaded file is an MS Word document?
I'm thinking of saving uploaded docs to a folder outside the webroot and feeding the downloads with a script using readfile(file).
However, I'm wondering if the the following would be enough to ...
6
votes
6answers
195 views
style type=“text/css” … what else is there?
Are there any other types that browsers support for the style tag besides "text/css"? (Excluding any synonyms for css). If not, then why not?
<style type="???"> ... </style>
6
votes
1answer
2k views
IIS 7.5 applicationHost.config file is not being updated
I'm currently playing around with the Microsoft.Web.Administration (MWA) namespace in order to adjust our application to configure IIS 7.5 with the new API.
I understood that all IIS level changes ...
6
votes
2answers
204 views
Is there an advantage to using the XHTML 1.1 doctype with the “text/html” MIME type instead of an HTML doctype?
XHTML 1.1 is intended to be used with the "application/xhtml+xml" MIME type. Yet almost no one does this, because IE doesn't handle the "application/xhtml+xml" MIME type correctly, and draconian error ...
6
votes
1answer
2k views
What is the HTTP content type for binary plist?
I am modifying a rails server to handle binary plist from an iPhone client via POST and PUT requests. The content type for text plist is text/plist, as far as I can tell. I would like the server to ...
6
votes
3answers
3k views
Rails: MIME type issues with .m4v files
In my Rails app I'm trying to get the MIME type of a file like so:
MIME::Types.type_for("example.m4v").to_s
But it's not recognizing it.
I tried adding the following to ...
6
votes
2answers
419 views
Creating a download page in ColdFusion 8
I have an application that allows admins to upload files. These files are stored outside of the web root so they are not accessible via a URL. In the past, we have always used code similar to below to ...
6
votes
7answers
5k views
List of ALL MimeTypes on the Planet, mapped to File Extensions?
Is there a resource that lists ALL the mimeTypes in existence?
I have found a few places with under 1000 mimeTypes, but then they still don't include common ones like .rar, .fla, .rb, .docx!
Does ...
6
votes
4answers
3k views
How can you read a files MIME-type in objective-c
I am interested in detecting the MIME-type for a file in the documents directory of my iPhone application. A search through the docs did not provide any answers.
6
votes
2answers
1k views
How do I determine the extension(s) associated with a MIME type in PHP?
Is there a quick and dirty mapping of MIME types to extensions in PHP that I can make use of?
6
votes
2answers
5k views
Return a PHP page as an image
I am trying to read a image file (.jpeg to be exact), and 'echo' it back to the page output, but have is display an image...
my index.php has an image link like this:
<img ...
6
votes
5answers
3k views
How do I make my Apache 2 server force a browser to open a file transfer dialogue?
How do I make my Apache 2 server force a browser to open a file transfer dialogue if the URL points to a file with a .pln or .psa extension?
I have a simple LAMP server with CentOS 5, Apache 2, MYSQL ...
5
votes
1answer
123 views
Rails UJS not working with mobile MIME type
I'm following Railscast #199 to allow my web app to be viewed in a mobile browser. It works great, except when I try to load information using UJS on tabs in the mobile version. Clicking on the tabs ...