Tagged Questions

5
votes
0answers
115 views

mod_expires sending Cache-Control headers for 3## status codes

Apache is sending Cache-Control headers for 3## status codes, like 302 redirects. This is causing Firefox (possibly starting with Firefox 5) to cache the 302 redirects--which results in an infinite ...
4
votes
3answers
849 views

Make IE to cache resources but always revalidate

The cache control header "no-cache, must-revalidate, private" allows browsers to cache the resource but forces a revalidate with conditional requests. This works as expected in FF, Safari, and Chrome. ...
2
votes
2answers
61 views

using HTTP headers for cache control in PHP

How can I use HTTP headers to control when my cache should be updated? At the moment I am using cURL to grab a live XML feed and then save it into an xml file. The feed also sends HTTP headers ...
2
votes
3answers
152 views

How do I create a “clear cache” button for my site?

I'd like to create a button on my site that COMPLETELY clears my cache. As neither Safari's nor Chrome's features work at all it seems. Is this possible?
1
vote
1answer
63 views

Keep the assets fresh in browser and cancel the freshness check request of the cache [for rails 3.1 app on heroku]

I have lot of small images (of sizes ~3kb or so) and lot of css and js files. After the first request tey are getting cached on the browser, but when I reload the page the browser is trying to check ...
1
vote
0answers
78 views

Enabling browser side caching for rails 3.1 app on heroku

I have a quite a big jpg image file and few css files, and these are not going to change for every reload but every time it is loading the full imgae instead of caching in the browser, I tried ...
1
vote
0answers
149 views

Trying To “Cookie-Free” A Sub-domain Using .htaccess, But Doesn't Work

Yes, I have searched a lot, here and there, and this is the closest I've found that I thought could actually work. But it doesn't. <IfModule mod_headers.c> <FilesMatch ...
1
vote
1answer
61 views

Setting Cache Expiry Period To Months or Years for static files (images etc), Necessary?

1. I am setting cache expiry period for images on my server using some .htaccess code. The thing is, when I checked the cache-expiry period of images on some popular websites, it's mostly between ...
1
vote
2answers
57 views

Client side caching using Apache 2

I have a script that is consumming too much resource to provide data that could be retrieved only each minute. Is there a way to configure Apache 2 through an .htaccess file to specify headers telling ...
1
vote
1answer
77 views

Force Browser Caching Across Browser Sessions

I help maintain several Wordpress-based websites that publish news and reference information. We have been working hard to make pages at the websites load as fast as possible. One of the things ...
1
vote
1answer
357 views

How can I implement CSS Cache Busting with JSF outputStylesheet?

In JSF page templates I use this code to include a CSS resource: <h:outputStylesheet library="css" name="mystyles.css" /> The usual way to implement CSS cache busting would be to add a ...
1
vote
1answer
104 views

Creating a bookmarklet that always fetches latest external script version and keeps it in cache?

With in-page script tags I normally do: script src="js/all.2011_02_02.js" That way the browser fetches the latest version when I update the script source url and keeps it in cache. Well, how can I ...
0
votes
0answers
10 views

Browser cache does't work

i'm using some directives in the htaccess using mod_expires to set the cache of js files: ExpiresActive On <FilesMatch "\.(js)$"> ExpiresDefault "access plus 3 days" Header append Cache-Control ...
0
votes
0answers
14 views

Different Cache-Control for browser and CDN

Is it possible to set different cache-control headers for CDN and browser? Currently, I am using header("Cache-Control: max-age=3600, public"); Since, I am using public, I believe that both browser ...
0
votes
0answers
29 views

Browser Resource Caching (Images, Javascript, CSS)

I am having trouble with caching on a website that I'm working on updating. Many of the resources I've updated (javascript, css, and image files) appear to be cached locally by browsers. What I can't ...
0
votes
0answers
42 views

Browser Cache to Remote Images

My site loads images from a remote server over a 301 redirect to this server. Because of 301 site loads images for every request. I want to make browser cache the images to load them If they aren't ...
0
votes
1answer
67 views

How do I ensure that visitors on my website see redesigned pages instead of old cached pages and graphics?

Ive recently redesigned my website, new CSS, new graphics for buttons etc. When existing users return to my site I want to make sure they get served the new pages and style sheets and the browsers ...
0
votes
1answer
67 views

Cache-manifest: while offline, replace all pages with a single “You are offline” page?

I'm trying to work out if something is possible with cache-manifest. I have a mobile web app with about 5 pages. They all require connection to work in a meaningful way. I'd like to handle ...
0
votes
1answer
140 views

How to prevent content being displayed from Back-Forward cache in Firefox?

Browser: Firefox 6.0 I've Page A with the following setup to make sure the content is NOT stored in the bfcache of the browser: 1) $(window).unload(function(){}); 2) Following HTTP headers: ...
0
votes
0answers
57 views

Force refresh of a cached page

We recently changed our logo. The new logo has a new file name. Apparently for some users this isn't enough of a change to cause their browser (almost definitely IE 8 or less) to refresh their cache ...
0
votes
1answer
42 views

Ensure responses are not cached

I have a particular HTTP response which I don't want cached because it has private/sensitive data in it I'm already setting Cache-Control to no-store, which should handle clients supporting ...
0
votes
1answer
40 views

How do I cache control?

How do I get my website to save images to clients computer and use them, not redownload them every page reload? I tried to send header("Cache-Control: max-age=3600"); but that had no effect.
0
votes
2answers
118 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
0answers
24 views

each time XML paser sending request won't clean Cache?

I have a question about DOM, XML and Cache. I have an application to extract text from web and write to XML file and then display them, it triggers by click a button. but the problem is when I create ...
0
votes
2answers
157 views

Reload vs Refresh

I have this script <?php header("Expires: Sat, 11 Jun 2011 00:00:00 GMT"); echo "Hello World"; ?> It just echo Hello world and cache is set to expire for next saturday.Now when i load this ...
0
votes
1answer
253 views

IIS7: Cache Setting Not Working… why?

My IIS7 web.config is set to the following with a folder of static assets (not within an ASP.NET app or anything): <?xml version="1.0" encoding="UTF-8"?> <configuration> ...
0
votes
0answers
229 views

Expires Headers & GET request

I'm managing a website which requires a little speed up. If we do a quick search there's tones of info like, expires header, last-mod header, gzip, blablabla. Now am trying the see the Expires ...
0
votes
1answer
219 views

Cache problem with Django forms

i'm populating the choices of a form choicefield in django, it's a year select field, i get years from the database and put them in a list of tuples in the field. My code looks like this def ...
0
votes
1answer
93 views

How do I configure optimal cache policy for index.html page in my site?

I have a web site with an index.html homepage that is updated from time to time. We sometimes add offers for our clients, special messages and so on, which have to be visible by next day for ...
0
votes
1answer
170 views

Child SWF is caching even though browser cache is disabled

I've got a parent SWF that loads in a couple child SWFs. Even though my browser cache is cleared -- it's disabled, in fact -- reloading, or even restarting, the browser doesn't trigger the newest ...
0
votes
2answers
79 views

Will caching work if one of the web servers has a clock that is slightly off?

It is said that the web servers' clocks must be identical for the Expires and Cache-Control headers to work? Why is that? Can't they be off by 1 second or a few minutes? If the cache is supposed to ...
0
votes
1answer
292 views

Ruby on Rails: how to set content expiration for 15 minutes if it is an AJAX request

Is the following a good form of detecting AJAX request and setting expiration for 15 minutes so that the same GET will not require any network traffic? # in controller if request.xhr? ...