Tagged Questions
In the Hypertext Transfer Protocol (HTTP), HTTP header fields contain the operating parameters of an HTTP request or response. With the request or response line (first line of message), they form the message header.
88
votes
2answers
34k views
Proper MIME type for PDF files
When working with PDFs, I've run across the MIME types 'application/pdf' and 'application/x-pdf' among others.
Is there a difference between these two types, and if so what is it? Is one preferred ...
78
votes
4answers
49k views
correct HTTP header for json file
I've searched around and found two different ways to define Content-type for JSON file loaded with php.
header('Content-type: text/json');
header('Content-type: application/json');
which one should ...
61
votes
6answers
25k views
How to encode the filename parameter of Content-Disposition header in HTTP?
Web applications that want to force a resource to be downloaded rather than directly rendered in a Web browser issue a Content-Disposition header in the HTTP response of the form:
...
50
votes
7answers
50k views
Accessing HTTP Headers in Javascript?
How do I access the HTTP response headers via JavaScript?
Related to this question, which was modified to ask about specifically accessing browser information.
44
votes
15answers
12k views
Making sure a web page is not cached, across all browsers
Our investigations have shown us that not all browsers respect the http cache directives in a uniform manner.
For security reasons we do not want certain pages in our application to cached, ever, by ...
38
votes
7answers
26k views
What's the difference between Cache-Control: max-age=0 and no-cache?
max-age=0 implies that the content is considered stale (and must be re-fetched) immediately, which is in effect the same thing as no-cache.
Google has failed to solve this mystery for me :(
35
votes
11answers
17k views
HTTP authentication logout via PHP
What is the correct way to log out of HTTP authentication protected folder?
There are workarounds that can achieve this, but they are potentially dangerous because they can be buggy or don't work in ...
34
votes
9answers
9k views
How big can a user agent string get?
If you were going to store a user agent in a database, how large would you accomdate for?
I found this technet article which recommends keeping UA under 200. It doesn't look like this is defined in ...
34
votes
7answers
13k views
How do you send a HEAD HTTP request in Python?
So what I'm trying to do here is get the headers of a given URL so I can determine the mime-type. I want to be able to see if http://somedomain/foo/ will return an html document or a jpg image for ...
29
votes
8answers
56k views
Get Client IP using just Javascript?
I need to somehow pull the clients IP address using pure javascript, no server side code, not even SSI.
Any ideas?
I'm not against using a free 3rd party script, if someone can suggest one. This is ...
28
votes
2answers
4k views
What does “WARN Could not determine content-length of response body.” mean and how to I get rid of it?
Since upgrading to Rails 3.1 I'm seeing this warning message in my development log:
WARN Could not determine content-length of response body. Set content-length of the response or set ...
28
votes
8answers
6k views
Paging in a Rest Collection
I'm interested in exposing a direct REST interface to collections of JSON documents (think CouchDB or Persevere). The problem I'm running into is how to handle the GET operation on the collection root ...
27
votes
4answers
5k views
Custom HTTP headers : naming conventions
Several of our users have asked us to include data relative to their account in the HTTP headers of requests we send them, or even responses they get from our API.
What is the general convention to ...
25
votes
3answers
27k views
How to use the CSV MIME-type?
In a web application I am working on, the user can click on a link to a csv file. There is no header set for the mime-type, so the browser just renders it as text. I would like for this file to be ...
21
votes
3answers
5k views
application/x-www-form-urlencoded or multipart/form-data?
In HTTP there are two ways to POST data: application/x-www-form-urlencoded and multipart/form-data. I understand that most browsers are only able to upload files if multipart/form-data is used. Is ...
21
votes
8answers
20k views
Easy way to test a URL for 404 in PHP?
I'm teaching myself some basic scraping and I've found that sometimes the URL's that I feed into my code return 404, which gums up all the rest of my code.
So I need a test at the top of the code to ...
19
votes
6answers
6k views
PHP: Does $_SERVER['HTTP_X_REQUESTED_WITH'] exist or not?
All over the Internet, included even here at StackOverlow, people state that a good way to check if a request is AJAX or not is to do the following:
if (strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) ...
19
votes
5answers
9k views
How to prevent browser page caching in Rails
Ubuntu -> Apache -> Phusion Passenger -> Rails 2.3
The main part of my site reacts to your clicks. So, if you click on a link, it will send you on to the destination, and instantly regenerate your ...
18
votes
2answers
7k views
Html validation error for property attribute
I am using few facebook social plugins and I am using the meta header. When validating the page, the W3C validator is throwing the error -> "Error: there is no attribute "property".
I am using the ...
18
votes
2answers
9k views
Maximum on http header values?
Is there an accepted maximum allowed size for HTTP headers? If so, what is it? If not, is this something that's server specific or is the accepted standard to allow headers of any size?
17
votes
3answers
7k views
WCF GZip Compression Request/Response Processing
How do I get a WCF client to process server responses which have been GZipped or Deflated by IIS?
On IIS, I've followed the instructions here on how to make IIS 6 gzip all responses (where the ...
16
votes
3answers
2k views
Ideal HTTP cache control headers for different types of resources
I want to find a minimal set of headers, that work with "all" caches and browsers (also when using HTTPS!)
On my web site, I'll have three kinds of resources:
(1) Forever cacheable (public / equal ...
16
votes
7answers
856 views
Asking browsers to cache as aggressively as possible
This is about a web app that serves images. Since the same request will always return the same image, I want the accessing browsers to cache the images as aggressively as possible. I pretty much want ...
16
votes
4answers
11k views
Is there a practical HTTP Header length limit?
I have a web application that adds contextual information to XmlHttpRequest objects using the setRequestHeader API. I am using a custom header name (e.g. X-Foo) and a JSON structured value. It isn't ...
15
votes
2answers
9k views
C# Get http:/…/File Size
I want to get the size of an http:/.../file before I download it. The file can be a webpage, image, or a media file. Can this be done with HTTP headers? How do I download just the file HTTP header?
...
14
votes
3answers
14k views
Examine http response headers in IE8
I'm looking for an ie8-addon that displays the http headers like firebug or httpliveheaders do. Any advice is appreciated.
edit: I may be blind but it seems as if the built-in developer tools (F12) ...
14
votes
8answers
18k views
Why do I get “Cannot redirect after HTTP headers have been sent” when I call Response.Redirect()?
When I call Response.Redirect(someUrl) I get an HttpException: "Cannot redirect after HTTP headers have been sent".
Why do I get this? And how can I fix this issue?
14
votes
5answers
29k views
How do I find the mime-type of a file with php?
Ok, so I have an index.php file which has to process many different file types. how do I guess the filetype based on the REQUEST_URI.
If I request http://site/image.jpg, and all requests redirect ...
13
votes
6answers
292 views
Redirecting to FTP URL with username and password in Safari
I've got a problem with Safari I haven't been able to solve:
<?php
header("Location: ftp://username:password@somedomain.org/somefile.zip");
?>
This code-snippet works in every browser ...
13
votes
1answer
4k views
How to view http header in Chrome 9.x? [closed]
Till 9.x, the headers were under the resources in the Developer Tools, but now I can't find it anywhere.
Thanks
13
votes
4answers
1k views
Is REST DELETE really idempotent?
DELETE is supposed to be idempotent.
If I DELETE http://example.com/account/123 it's going to delete the account.
If I do it again would I expect a 404, since the account no longer exists? What if I ...
13
votes
5answers
6k views
Parsing HTTP User-Agent string
What is the best method to parse a User-Agent string in Python to reliably detect
Browser
Browser version
OS
Or perhaps any helper library that does it
13
votes
4answers
3k views
Parse Accept Header
Does anyone have any suggestions (or a regular expression) for parsing the HTTP Accept header?
I am trying to do some content-type negotiation in ASP.NET MVC. There doesn't seem to be a built in way ...
12
votes
6answers
13k views
Prevent Back button from showing POST confirmation alert
I have an application that supplies long list of parameters to a web page, so I have to use POST instead of GET. The problem is that when page gets displayed and user clicks the Back button, Firefox ...
11
votes
3answers
632 views
Can't get rid of header X-Powered-By:Express
I am running a server on nodejs with express. I can't seem to get rid of the header:
X-Powered-By:Express
I was wondering if there is any way to get rid of this header or do I have to live with it?
...
11
votes
2answers
670 views
Email Tracking - GMail
I am creating my own email tracking system for email marketing tracking. I have been able to determine each persons email client they are using by using the http referrer but for some reason GMAIL ...
11
votes
1answer
2k views
Modify HTTP Headers for a JSONP request
I am using jquery to build a request to the Twitter Search API. I am using jsonp, as is needed for cross-domain requests. However, the Twitter API specifies that you should set a unique User-Agent for ...
11
votes
2answers
6k views
How to configure static content cache per folder and extension in IIS7?
I would like to set up rules in IIS7 for static content caching in my ASP.NET website.
I have seen these articles, which details how to do it using the <clientCache /> element in web.config:
...
11
votes
2answers
3k views
How to set response filename without forcing saveas dialog
I am returning a stream in some response setting the appropriate content-type header. The behavior i'm looking for is this:
If the browser is able to render content of the given content-type then it ...
11
votes
5answers
4k views
How to encode UTF8 filename for HTTP headers? (Python, Django)
I have problem with HTTP headers, they're encoded in ASCII and I want to provided a view for downloading files that names can be non ASCII.
response['Content-Disposition'] = 'attachment; ...
11
votes
2answers
3k views
Difference between Content-Range and Range headers?
What is the difference between HTTP headers Content-Range and Range? When should each be used?
I am trying to stream an audio file from a particular byte offset. Should I use Content-Range or Range ...
11
votes
4answers
2k views
What is the purpose of the HTTP header field “Content-Location”?
Confused/inspired by a comment to my question Do search engines respect the HTTP header field “Content-Location”?, I’d like to know, what the exact purpose of the Content-Location header field in HTTP ...
11
votes
1answer
8k views
Grails File Download
I'm trying to craete a site which allows users to upload any file type they like. I've implemented this feature fine, and the file is held on the server. Later on they can download the file to view, ...
11
votes
4answers
32k views
How to send a header using a HTTP request through a curl call?
I wish to send a header to my apache server on a linux box.
Using a curl call how can I achieve this?
10
votes
2answers
123 views
How to add device information while sending request to server?
I want to add information about the iOS and device model while sending any request to server to fetch the data from server. Can any one help me how to send some specific information to server so that ...
10
votes
1answer
5k views
Resource interpreted as document but transferred with MIME type text/css
Resource interpreted as document but transferred with MIME type text/css
This is the error that's showing up in Google Chrome Inspector.
The file is: http://www.doanddare.org/css/style.css
It is ...
10
votes
1answer
484 views
Setting optimum http caching headers and server params in ASP.Net MVC and IIS 7.5
I have an ASP.Net site (happens to be MVC, but that's not relevant here) with a few pages I'd like cached really well.
Specifically I'd like to achieve:
output cached on the server for 2 hours.
if ...
10
votes
3answers
3k views
How to specify HTTP expiration header? (ASP.NET MVC+IIS)
I am already using output caching in my ASP.NET MVC application.
Page speed tells me to specify HTTP cache expiration for css and images in the response header.
I know that the Response object ...
10
votes
2answers
4k views
Content-Disposition:What are the differences between “inline” and “attachment”?
What are the differences between
Response.AddHeader("content-disposition", "attachment;filename=somefile.ext")
and
Response.AddHeader("content-disposition", "inline;filename=somefile.ext")
I ...
10
votes
3answers
13k views
Uses of content-disposition in an HTTP response header
I have found the following asp.net code to be very useful when serving files from a database:
Response.AppendHeader("content-disposition", "attachment; filename=" + fileName);
This lets the user ...