The HTTP response status code 304 Not Modified

learn more… | top users | synonyms

0
votes
0answers
24 views

Using If-Modified-Since header for dynamically generated remote files

Our web server regularly downloads images from other web servers. To prevent our server having to download the same image every day even if it has not changed, I plan to store the Last-Modified header ...
1
vote
2answers
102 views

jQuery ajax ifModified not honored on call for cached response when should be 304

I'm using jQuery ajax to retrieve json from an ASP.Net MVC app and I'm not seeing expected results when making ajax calls where ifModified = true. I'm using jQuery 1.9.1 and Chrome Version ...
0
votes
2answers
90 views

Caching images returned from a web api service

No matter what I do I can't get images returned from a web api too cache, I am seeing a request to the server every time I request the image. I have tried many permiations for the header setting, ...
1
vote
1answer
80 views

Do I have to send the ETag again with a 304 Not Modified header?

I was playing with PHP, using ETags, IF_NONE_MATCH, etc, when a weird thing happened. I wrote the code below, which checks for IF_NONE_MATCH. If it matches my ETag, I send a 304 response header. If ...
0
votes
0answers
82 views

Jquery 304 Not Modified Issue

I am building an application with jquery, php, jquerymobile on a WAMP server. Everything in the app works fine until I try to go back to another page and where it should fire a function based on the ...
1
vote
1answer
125 views

Browser is sending request for same content (PNG image) multiple times

I've a PNG file named icons.png hosted on an apache server. Basically this file is a combination of other small image elements (CSS Sprite). This file loads with a normal 200 OK response when the page ...
-1
votes
3answers
54 views

Why would an image that has already been loaded on the page load again?

I'm removing and replacing the src of an image in the dom using $('.myImg').attr('src',imgURL); I'm trying to use this with an on load event. I expected that the load event would only be triggered ...
2
votes
1answer
196 views

How to get 304 response for PHP generated javascript file?

I have the following PHP file: <?php Header('Content-Type: application/javascript'); echo "// Some dynamically generated JavaScript here..."; So it's a .php file but it's interpreted as a ...
0
votes
1answer
201 views

Browser Cache Control System in Php

i'm trying to build a browser cache control system written in PHP. More in the deep, i'd like to serve every browser request with Php, to generate the right HTTP Response Header an to generate an ...
0
votes
0answers
190 views

Dynamic css file 304 on Chrome but 200 on FF and IE?

I have a css file being dynamically loaded. For example: http://example.com/css.php?request=/skin/styles.css On chrome is loads very fast and it has the 304 not modified header. On FF and IE it ...
1
vote
1answer
245 views

How can I have nginx return 304 Not Modified based on a Redis cache?

I'm looking at setting up a Redis cache to speed up a Ruby on Rails application deployed with nginx. I want nginx to send a 304 Not Modified either based on a timestamp in the Redis db (e.g. last ...
1
vote
0answers
178 views

PHP Curl get response 304 [closed]

I want to make Php curl post to Blog.co.uk, all form was filled data but it don't want to submit my post and in server response I get HTTP 304 "Not Modified" in Server response. Please help, I really ...
5
votes
1answer
533 views

AFNetworking : How to know if response is using cache or not ? 304 or 200

I can't find any answer to my question, may be I miss something... When I ask for a url, I need to know if the response comes from the cache or from the net. Is the status code 304 or 200 ? (but ...
4
votes
1answer
503 views

Prevent unwanted headers when returning 304 Not Modified with ServiceStack

Using ServiceStack, I just want to return 304 Not Modified as such: HTTP/1.1 304 Not Modified But ServiceStack adds many other unwanted (returning HttpResult with 304 code) headers as such: ...
2
votes
0answers
180 views

HTTP 304 Not Modified Response Taking Several Seconds

I am building an ASP.NET application. I'm experiencing some slow load times so I checked out the traffic using Fiddler. It seems that the page itself is loading in around 3 seconds. OK, it's kind of ...
1
vote
1answer
860 views

In Rails 3.2.3 server I get error 304 Not Modified (5ms)

I am newbie to ruby and rails for several months now.I took a class for ruby and rails which allowed me to create a restaurant blog site. Well I recently started revamping the site to make for my ...
0
votes
2answers
534 views

POST from jquery 1.8 $.ajax returned 304. wrong apache configuration?

I shoot the following Post request to a remote apache server,hosting a small php script: The POST: var request = $.ajax({ type: 'POST', url: 'http://my.server.on.port/mmm.php', data: { ...
0
votes
1answer
348 views

Respond with 304 - Client-side Caching using ASP.NET Webservices

I am developing my application in ASP.NET 4.5. I setup a webservice. The webservice get accessed by Jquery using a GET Ajax call. The function has a 'id' parameter and for each id it returns different ...
6
votes
1answer
822 views

IE9 fakes 304 after receiving ETag

I've got a problem with AJAX & Internet Explorer 9: it stops polling our server after receiving response to initial etagged GET. It pretends to issue requests with response like "Response ...
1
vote
0answers
304 views

200 instead of 304 in Response

Simple problem: onResponseReceive getStatusCode returns 200 instead of 304. Fiddler tells me that the Response statuscode is 304. What do I do: I constantly poll the server for new data (every 10 ...
3
votes
1answer
409 views

Why doesn't jquery ajax call populate data variable from cache when getting a 304 status code?

I'm using jquery ajax in my mobile app to fetch my json data via restful apis. My restful apis have been configured to support etags. My restful apis are hosted on another subdomain, so I have ...
1
vote
1answer
1k views

mvc 4 bundle and minification - not getting 304 (not modified) when I refresh

I'm trying out MVC 4 Beta's bundling and minification thru System.Web.Optimization. I was hoping that the site I'm using it for would receive a 304 (Not Modified) when I hit refresh. I thought the ...
1
vote
0answers
219 views

firefox do not send the header : if-modified-since after receive Last-modified from the response

firefox do not send the header : if-modified-since after receive Last-modified from the response. eg: visiting load a website in webview in Firefox, and after several times load this page,press ...
4
votes
2answers
2k 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: ...
3
votes
1answer
934 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
341 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 ...
1
vote
0answers
133 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
660 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?
0
votes
3answers
763 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.
1
vote
1answer
290 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 ...
2
votes
1answer
441 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,
3
votes
2answers
2k 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 ...
2
votes
1answer
316 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 ...
3
votes
0answers
398 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' ...
0
votes
1answer
295 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 ...
5
votes
1answer
2k 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 ...
0
votes
2answers
223 views

Can browser display objects from its cache without receiving a 304 status code?

I'm trying to understand 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 want web ...
2
votes
1answer
855 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
621 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 ...
1
vote
1answer
431 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 ...
9
votes
2answers
3k 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" ...
0
votes
1answer
480 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 ...
11
votes
3answers
6k 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 ...
9
votes
5answers
3k 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 ...
1
vote
3answers
1k 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
362 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 ...
19
votes
6answers
4k 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 ...
3
votes
2answers
2k 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 ...
1
vote
1answer
378 views

Does AMF support caching?

In other words: Can I respond with a 304 and have it "just work"?
2
votes
0answers
95 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 2