A MIME type after MIME (Multipurpose Internet Mail Extensions) is a two-part identifier for file formats on the Internet.

learn more… | top users | synonyms (4)

0
votes
1answer
36 views

Difference in mime-type in form PHP

I would like upload .docx, but In $_FILES['field']['type'] is application/vnd.openxmlformats-officedocument.wordprocessingml.document, but in mime_content_type() return application/zip Why these ...
1
vote
1answer
61 views

Proper syntax for optional header parameter for text/csv mimetype?

According to RFC 4180: ...the presence or absence of the header line should be indicated via the optional "header" parameter of this MIME type... So, does that mean the correct string is: ...
1
vote
5answers
403 views

Videos not playing in browsers

I am having 6 different types of video formats, namely .avi, .mkv, .mov, .ogv, .wmv, .mp4. I tried to embed these videos to the browsers using video tag in HTML5. But no videos played in any browsers. ...
0
votes
0answers
76 views

Apache, CentOS, Kloxo and ogg mimetype

after hours trying to fix the problem i think i got crazy :S I have an ogg sound in my website which works fine on local (Apache by XAMPP) but it doesn't work at all on my VPS (Apache, CentOs and ...
0
votes
0answers
76 views

Attaching pkpass to email using Java

I am trying to attach a pkpass file into email using javamail etc. I have something like: File file = new File("c:/Sample1.pkpass"); byte[] b = new byte[(int) file.length()]; FileInputStream ...
1
vote
1answer
74 views

How to check if an intent can be handled from some activity?

I have this method so far , but it came up like something is missing for example I have a file /sdcard/sound.3ga that returns false ( like there is no activity that can handle this type of file ) , ...
1
vote
2answers
67 views

Catalyst global moose hash returning MIME type httpd/unix-directory

I'm trying to create a Moose hash in my Catalyst app in my_app.pm so that I can access it globally: has 'hash' => ( is => 'rw', isa => 'Hashref' ); However, as soon as I try to ...
2
votes
2answers
591 views

How to set mime type of application/vnd.apple.pkpass in order to share pass by link or email

I just create an app and a pass, so I can add pass to passbook in iPod. But I cannot share pass by email or link from web server. By the documents I read from apple, I need to add mime type as ...
1
vote
1answer
220 views

Mime type of uploaded zip file is application/octet

I have a simple file upload that only allows zip files. On my machine (Windows 7, Firefox 19.0.2) it works fine. On another machine (Windows 8, Firefox 19.0.2) the file type check fails when I upload ...
4
votes
1answer
448 views

MIME-type checking with JMimeMagic - MagicMatchNotFoundException

I need check currentFile of MIME-type. If result is success and file have MIME-type return true. If wasn't checking succed return false. With this goal I use JMimeMagic. I try do this according this ...
4
votes
2answers
217 views

Proper mime-type of shell scripts in subversion

When I add a shell script (foo.sh) to subversion, by default it sets the svn:mime-type to application/x-shellscript. Since this does not start with text/, diff and blame essentially ignore the file. ...
2
votes
2answers
290 views

Alternative to FindMimeFromData method in Urlmon.dll one which has more MIME types

The FindMimeFromData method accessible through Windows DLL Urlmon.dll is capable of determining the MIME type of a given data stored in memory, considering the first 256 bytes of the byte array, where ...
0
votes
1answer
226 views

C# file transfer through sockets

I have to make a client-server file sync application...I was wondering that instead of having a seperate mime type and code for every file type, is it possible to just zip the file types, transmit to ...
3
votes
2answers
840 views

M4V Mimetype - video/mp4 or video/m4v?

I am serving a video via the HTML5 video element. I'm finding conflicting information about the appropriate MIME type for m4v video. Most demos set the type attribute to video/mp4 in the source tag in ...
1
vote
1answer
185 views

SharePoint: how to get Internet media type of a document?

How to get Internet media type of a document using SharePoint web-services? I access the service using SOAP. I've tried the Content Types documentation, but it is something different than ...
1
vote
1answer
31 views

Use of external file for list of mime types

I'm about to implement the filter/function below to be able to get control of the file types a user can upload to the Wordpress application I'm working on. However, the list of mime types is very long ...
0
votes
0answers
206 views

Finding the content type of the uploaded file in rails

I am working on ruby on rails. I am trying to do a file attachment (image/audio/video) . So i have a common method like byteArray = StringIO.new(File.open("path").read) Is it possible to find the ...
0
votes
1answer
44 views

MIME: multipart in multipart

I am Writing a little Mail parser for a project and to understand mail better. There came up a question about Multiparts. When I have a Mail with Content-Type: multipart/alternative oder any other ...
0
votes
0answers
59 views

Adding MIME type to website instead of IIS

I'm getting a weird invalidstateerror DOM exception error 11 when I call swapCache(): Error: An attempt was made to use an object that is not, or is no longer, usable. at ...
1
vote
1answer
213 views

Serve Static PNG files with an “image/png” content type, not “image/x-png”

I'm using google app engine with Python and have a couple static .png image files but they are all being served with an "image/x-png" content-type. This is a problem when I use a browser like chrome ...
2
votes
0answers
105 views

MIME type mp4 error

I'm building a video website and can't get it to play videos.I have a mp4 file called "trial.mp4"(it's downloadable).The only error i get is: Resource interpreted as Document but transferred with MIME ...
0
votes
0answers
59 views

Automatic downloading stopped due to the proper MIME type mismatch

I have written one script to download files automatically from the web as below: #Automatically download files to a given folder profile settings ...
4
votes
3answers
283 views

Estimate if file is MIME type

This method should be check if a file is MIME type. To achieve this goal I am using method probeContentType(). However maybe is another way to decide same question. Which are the other alternatives ...
0
votes
1answer
82 views

In Chrome, what's the simplest way to view the mime type of a document?

In Firefox, you can select "View Page Info" from the right-click menu, and the mime type will be displayed. But the same "View Page Info" command in Chrome does not show the mime type. Feels like ...
0
votes
1answer
92 views

Prevent apache from automatically change mime type

I generate a Wave-File with PHP. The data is read from a wav file on the server, manipulated and finally sent to the user. The problem now: Apache delivers this file as Content-Type: ...
0
votes
0answers
112 views

serving image with ashx - wrong mime type

I have the following .ashx code that works fine locally when running in IIS express. But when pushed live instead of serving an image it's giving me the following message. - "Resource interpreted as ...
0
votes
1answer
94 views

What MIME type should I use for an MPP file?

I have seen an example of what i intend to do from this question uploading documents to sql server i have this working fine, but how would you upload an .mpp file? What would be the type be for it I ...
0
votes
0answers
67 views

andorid Mime type “application/x-empty”

When selecting a file from image gallery I'm getting that his mime type is "application/x-empty". Which is invalid mime type. it's only happens on some of the device and doesn't related to API level. ...
0
votes
1answer
149 views

Receive specific content via Share Intent in Android

As an example of what I am trying to do: when I share an article from Pocket to Evernote, Pocket formats the text and sends the full article to Evernote whereas when I share an article with my app, I ...
0
votes
0answers
47 views

How add Mime Type to JS-created audio object

If I create the audio element with JavaScript (because It have to be dynamic -> sometimes I would delete this audio sometimes add more) Like: var one_player = new Audio; one_player.src= this.page + ...
0
votes
1answer
46 views

XHTML, Glassfish, Apache, and Internet Explorer

When I run Glassfish on localhost, and trying to load xhtml files on IE8, I get the pages loaded. I uploaded xhtml files to an Apache Server, and successfully accessed them from Chrom, FF and IE9. ...
0
votes
0answers
79 views

how to create an “offline” Java MimeMessage?

Java MimeMessage seems to require a Folder or Session for instantiation. Is there a sort of "offline" variety which allows creation of the message first, and then later it can be turned into a ...
0
votes
0answers
20 views

Mime Type text/xml vs. application/xml [duplicate]

Simple question - I am building a script that builds and outputs content as XML for an XML sitemap. The script sets the mime type to text/xml, but I recently read that doing so may not be a best ...
0
votes
1answer
83 views

Do the values in the accept attribute require a computer to know the mime types?

so I have a standard <input type="file" accept="..."/> where the accept, is a large list of different mime types. I already verify the filetypes on the server backend but I want to be sure I am ...
1
vote
0answers
164 views

Correct MIME type for multipart MJPEG stream over http?

Chrome always throws a warning for my MJPEG stream: Resource interpreted as Image but transferred with MIME type multipart/x-mixed-replace Is there maybe a better MIME type to use that can fix ...
0
votes
0answers
33 views

MS Publisher files detected as MS Word mime type in php

When using a variety of mime type detection commands with php (finfo, file -bi, etc) on publisher files, they all return application/msword. I am using conversion libraries to handle these files. ...
1
vote
1answer
42 views

filepicker.io mimetype audio in firefox

The mimetype settings look like this: mimetypes: ['audio/*'], Firefox on windows 7 cannot upload mp3 files, other browsers work fine. They get the "not audio file" error. Is this a bug with ...
0
votes
0answers
176 views

Java: how to check MIME type in files?

In my this program need to go through folders and find all files for MIME type, extension and coding. I realized the checks for extension: private void findFiles(String path) { File root = new ...
2
votes
1answer
165 views

Display images stored in a database without using header

I like the photo that I keep stored in my view using the following code but the problem is I can not play because I need the header('Content-Type: image/jpeg'); implementation would then display., But ...
0
votes
1answer
67 views

How to add new Mime Type and associate with new application?

I have a new file type ".xy2" and I would like to associate it with a custom application "shim". Does anyone know how to do it in a Linux? Thanks
0
votes
1answer
192 views

Chrome assuming octet-stream to .png image

I have an application with Google Maps API V3 and ASP.Net that uses OverlayView to set an custom icon on the map. The image of that icon is set on onAdd event by setting the background CSS property ...
0
votes
1answer
92 views

Formatted cliboard Java

I am having an issue trying to figure out how to retain formatting of text in a Java program when saving to the system clipboard. It does not work with things such as Microsoft's Wordpad or Lotus ...
0
votes
0answers
49 views

getting mimetype from file throws error in listview

I want to get the mimetypes of any file of a list and want to load them into a listview with a listitem with icon and filename. The following shows how i get the mimetype. This is my code so far in my ...
1
vote
1answer
72 views

QR Code MIME Type

Is there a commonly recognised MIME type specifically for QR code images, beyond the generic image/png (assuming png is the format)?
0
votes
2answers
301 views

Have Apache/PHP set MIME type based upon file extension for files being executed as PHP

I have an Apache/PHP based server on which I've made Apache execute js, html and css files as PHP via the following line in /etc/mime.types: application/x-httpd-php phtml ...
2
votes
3answers
622 views

Restkit Response in text/xml

I have a WS that return a plist. I am using Restkit and I would like to map the response. So first I initilialize my ObjectManager like this: sharedInstance.manager = [RKObjectManager ...
0
votes
1answer
307 views

Express NodeJS web.config in Azure for SVG & Fonts

I had a problem in an Express NodeJs website I make where I use SVG and other files like Fonts. When I ran the app locally I didn't have problem. But when I had to put it on Azure, all files like SVG ...
1
vote
2answers
120 views

Java - MimetypesFileTypeMap always returning application/octet

i am trying to get the mime type from a file but it always seems to be returning application/octet MimetypesFileTypeMap mftm = new MimetypesFileTypeMap(); System.out.println("Mime Type of " + ...
0
votes
1answer
101 views

Downloading Passbook files doesn't work with Facebook iOS browser [duplicate]

Safari for iOS6 supports the mime type: application.com/vnd.apple.pkpass This means you can download & open Passbook .pkpass files from a URL. It seems that Facebook's browser does not support ...
0
votes
1answer
67 views

Mime types for svg on a apache web server

I have .svg fonts and .svg images on a website. I have a problem with the mime types on the server. When i set this mime type: font/opentype svg Than the .svg images are disappeared. What do i am ...

1 2 3 4 5 26