The http-status-code-304 tag has no wiki summary.
15
votes
6answers
2k views
How can I get control of Google App Engine caching behavior in WebKit (etags gone crazy)?
Situation: running a Google App Engine site with my static content's default_expiration set to "14d"
Problem: in Chrome and Safari, visiting a URL (not reloading, just putting the cursor in the ...
12
votes
4answers
8k views
HTTP status code 200 (cache) vs status code 304?
I'm using the Google "Page Speed" plug-in for Firefox to access my web site.
Some of the components on my page is indicated as HTTP status:
200
200 (cache)
304
By Google's "Page Speed".
What I'm ...
7
votes
2answers
2k views
HttpWebRequest.GetResponse throws WebException on HTTP 304
When a web server responds to HttpWebRequest.GetResponse() with HTTP 304 (Not Modified), GetResponse() thows a WebException, which is so very weird to me. Is this by design or am I missing something ...
4
votes
1answer
915 views
How to check if jQuery.ajax() request header Status is “304 Not Modified”?
How to check if jQuery.ajax() request header Status is "304 Not Modified"?
jqXHR.status usually returns 200, even when requested header is "304 Not Modified".
ifModified:true does not help a lot ...
3
votes
1answer
867 views
Rails 3.1.0.rc4: 304 Not Modified. Is there any known working configuration?
Trying the basic example in rails 3.1 RC 4, I get the error
Compiled app/assets/javascripts/application.js
Served asset /application.js - 304 Not Modified
(same with .css and asset/rails.png on the ...
3
votes
1answer
847 views
ASP.NET MVC : how do I return 304 “Not Modified” status?
ASP.NET MVC 3.0, IIS 7, .NET 4
I have an action that returns data that seldom changes (almost static).
Is there an easy way to:
return 304 "Not Modified" from action;
include "Last-Modified" ...
3
votes
1answer
1k views
jQuery AJAX producing 304 responses when it shouldn't
This really has me scratching my head. Namely because it only happens in IE, not Firefox, and I was under the impression that jQuery was effectively browser neutral. I've been cracking at this thing ...
3
votes
2answers
903 views
Remove Etag and Last-Modified headers from IIS
Did you know you can prevent the revalidation of files in browser cache and subsequent 304 response by completely removing both the ETag and Last-Modifed response headers?
Of course, this is easy in ...
2
votes
1answer
117 views
ASP.NET MVC2 Browser caching with HTTP304 Status Code
In the company I work for, we have a web application developed with ASP.NET MVC2 and hosted on IIS7.
In a specific action, we return a JsonResult object holding an array. This array is updated ...
2
votes
1answer
731 views
How to prevent HTTP 304 in Django test server
I have a couple of projects in Django and alternate between one and another every now and then. All of them have a /media/ path, which is served by django.views.static.serve, and they all have a ...
2
votes
1answer
3k views
Why am I getting “(304) Not Modified” error on some links when using HttpWebRequest?
Any ideas why on some links that I try to access using HttpWebRequest I am getting "The remote server returned an error: (304) Not Modified." in the code?
The code I'm using is from Jeff's post here.
...
2
votes
2answers
451 views
How to do I integrate a 304 in Django?
When a user requests the same page, with the same data...I'd like Django to return a 304, so that the browser doesn't have to load the page all over again.
I'm new to this. How can this be done?
...
1
vote
1answer
60 views
Internet Explorer displaying cache data over Ajax Pull with 304 Result
I have a tool that works perfectly fine in Chrome and FF. But with any versions of IE the browser is displaying cache info over doing an Ajax pull to retrieve the data.
Here's my setup:
I have ...
1
vote
0answers
45 views
Browser is displaying no-cache version of page after receiving HTTP 304
It happens in my Wordpress and nginx configuration but IMO it's browser/HTTP related problem.
Everything is about one page, that appears in two versions, for logged in user and anonymous user. ...
1
vote
2answers
81 views
Is it possible to return a 304 Not Modified with .htaccess
If a user has a file cached in their browser and they send a http request with an If-Modified-Since header, is there a way to automatically serve them a 304 Not Modified response using .htaccess?
1
vote
1answer
322 views
How to prevent “304 Not Modified” in nginx?
I'm trying to disable all the caches in nginx for testing purpose.
I've set the following line
add_header Cache-Control no-cache;
I see that the page itself is not cached, but the images, css, and ...
1
vote
0answers
198 views
Rails 3 render_component can't handle 304? / Force ActionDispatch::Request to avoid cache
I use render_component, https://github.com/vhochstein/render_component in Rails 3.
When my controller returns 304 result, the render_component fails with this error:
undefined method `redirect_url' ...
1
vote
1answer
242 views
Internet Explorer FORCES a 304 when ajaxing a login status check
I've got an IE-specific ajax login status request problem occurring in a demo site I'm creating for my company.
In every internet explorer browser (7-9), this problem occurs, while it works like a ...
1
vote
1answer
232 views
304 response does not set custom header for apache with mod_headers
<VirtualHost *:80>
ServerAdmin webmaster@dev.dom.com
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
ServerName dev.dom.com
ServerAlias dev.dom.com
...
1
vote
2answers
496 views
How to fix browser cache and notmodified respond for JSON? jQuery.ajax({ifModified:true,cache:true}) JSON request break on data respond
How to fix browser cache and notmodified respond for JSON? jQuery.ajax({ifModified:true,cache:true}) JSON request break on data respond.
First time browser request http://localhost/api returns status ...
1
vote
2answers
196 views
Images not returning with 304 response code due to rewrite module
In our ASP.NET web application, we use our own class to act as a rewrite module. It takes all requests to the server, acting as a bootstrapper.
To access an image on our web application, the browser ...
1
vote
1answer
236 views
1
vote
0answers
66 views
Browser caching after login/logout
I've got a site with a basic login/logout system.
When I display pages I do a check to see when the page was last modified and if the browser has sent an if modified since header. If it hasn't been ...
1
vote
2answers
279 views
Help with cache control and expiry headers
Sorry if this question sounds a bit basic, I just want to be double sure.
I retrieve my images with a URL like so
image.jpg?m=54437
The end numbers allow me to cache control it. When the image ...
1
vote
1answer
224 views
How to make browser don't revalidate cache
How can I tell browser that use the cache and do not revalidate (HTTP Status 304) within the expire time or close the browser ? (just an opposite the must-revalidate ^^")
ASP.NET
1
vote
2answers
805 views
What headers do I want to send together with a 304 response?
When I send a 304 response. How will the browser interpret other headers which I send together with the 304?
E.g.
header("HTTP/1.1 304 Not Modified");
header("Expires: " . gmdate("D, d M Y H:i:s", ...
0
votes
0answers
19 views
401 response then resolving to 304 in FF
This is puzzling me, we've got an internal intranet application which is behind Windows authentication. On IE + Chrome, it's fine.
On FF, it prompts for Username + Password (which is to be expected), ...
0
votes
2answers
103 views
Jquery.get() not working in IE8/9. Won't load cached pages 304 not modified
Code Igniter version '2.0.3'
Jquery 1.7
Jquery History plugin
Hi guys,
I have a CodeIgniter app that I've built in an ajax fashion. I have a function as follows:
...
0
votes
0answers
56 views
Expires and 304 not modified request
Why when i was setting Expires and disabled Etags, I still getting 304 response?
This is my .htaccess file:
Header unset Pragma
FileETag None
Header unset ETag
#Expire Header
<FilesMatch ...
0
votes
1answer
42 views
YSlow Primed Cache - Wrong Pie Chart
The problem that i have is like this:
I did a YSlow test and under the Statistics Pie Chart View i have a wrong pie chart diagram. The Empty cache displays 11 requests and the primed cache displays 2 ...
0
votes
1answer
68 views
Django - http code 304, how to workaround in the testserver?
I have a CSS code that generates http 304:
[08/Nov/2011 15:22:07] "GET /site_media/logo1.gif HTTP/1.1" 304 0
How can I get a workaround using the Django test server? Any clues?
Best Regards,
0
votes
1answer
130 views
Detect a 304 redirection on an AJAX request
is there a way to detect whether an AJAX request has been redirected through a 304 response ? I tried an onreadystagechange with xhr.status==304 but got nothing. Are we only bound to 200 response ...
0
votes
2answers
124 views
SOLVED - Can browser display images (or some other objects) from its cache without receive 304 status code?
i'm trying to understanding if is it possibile to avoid request for some embedded objects, loading them directly from cache without asking to web server if the object is valid or not (i don't wont web ...
0
votes
1answer
154 views
304: The condition specified using HTTP conditional header(s) is not met
I'm currently storing files within Azure Blob Storage and when I request the files I get an message in firebug of 304 “The condition specified using HTTP conditional header(s) is not met”
I've ...
0
votes
1answer
292 views
HttpWebRequest Timing Out On A Response With Status Code 304
When communicating with our REST webservice, an http response with status code of 304 is returned to indicate that the resource requested hasn't changed. However our WP7 application, using the ...
0
votes
0answers
319 views
IE9 Cacheproblem: Doesn't make a 304 response when hovering a flash with nested FLV-player
I have a problem with a flashbanner in IE9.
It's a banner with a nested FLV-player, set to play on mouseover, and stop on mouseout. Works perfectly fine in IE8 and IE7, and all other browsers ...
0
votes
0answers
108 views
Grinder 3 : How to prevent the 'If-Modified-Since' portions from being recorded by TCPProxy?
I was able to record a script fine with Grinder 3's TCPProxy program (using its -http option).
However, when I played the script, I observed a lot of 'https://server:port/path/to/resource -> 304 Not ...
0
votes
1answer
178 views
Why does Web Server respond “304 Not Modified” when no Etag and no “If-Modified-Since” is in request header
I get back
304 Not Modified
from the web server, but in Firebug, the request header doesn't have Etag and doesn't have If-Modified-Since, and I looked at all the header line and there was no ...
0
votes
0answers
100 views
How often are etags used these days and what is their maximum length?
Curious to know how common it is for web servers to use etags, especially with RSS feeds? Also I can't seem to find what the maximum length can be for the etag header. The HTTP spec fails to mention ...
0
votes
3answers
635 views
304 Not Modified issue
Sorry for the probably wrong title. I am writing some code to handle If-Modified-Since and If-None-Match requests as part of caching. Everything works perfect except for that PHP returns some content ...
0
votes
2answers
222 views
Why am I getting this error in Django (I'm trying to do a 304 not modified)
def list_ajax(reqest):
#q = request.GET.get('q',None)
#get all where var = q.
return ...
list_ajax = condition(etag_func=list_ajax)(list_ajax)
As you can see, I'm trying to return a 304 ...
0
votes
2answers
925 views
mod_deflate on apache causing browser to do a 200 instead of 304?
I enabled mod_deflate on Apache 2 on an Ubuntu machine and noticed that my browser doesn't cache the compressed file types on page refreshes. I used firebug's net settings to check this and verified ...
-1
votes
3answers
56 views
How to prevent the server from replying with 304?
I need to know the steps that I can do to prevent the server from replying with 304.