Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
1k views

Rails time stamps on images in CSS

So Rails time stamping is great. I'm using it to add expires headers to all files that end in the 10 digit timestamp. Most of my images however are referenced in my CSS. Has anyone come across any ...
7
votes
3answers
11k views

Setup expires headers PHP & Apache

How can I setup expires headers in PHP + Apache? I'm currently using an auto_prepend to serve resources gzipped but I'd also like to maximise the cache. How can I set these up?
6
votes
3answers
317 views

XAP Expires after half a Day?

Im just wondering what would be causing my xap to expire every half day (approx). What i mean is that in the morning a user hits the website and it downloads a copy of the xap, by the afternoon if ...
6
votes
3answers
3k views

HTTP Expires header not respected by browser?

I have a situation where my (embedded) web server is sending Expires header, but the browser does not seem to respect the header setting, i.e., if I refresh the page, the browser requests the ...
5
votes
2answers
63 views

Why/how do browsers know to cache content (html,css,js,etc) when not explicitly instructed to do so

I was looking at Chirpy for css/js minifying,compression, etc. I noticed it doesn't support caching. It doesn't have any logic for sending expires headers, etags, etc. The absence of this feature ...
5
votes
9answers
324 views

What is the best method/options for expiring records within a database?

In a lot of databases I seem to be working on these days I can't just delete a record for any number of reasons, including so later on they can be displayed later (say a product that no longer exists) ...
4
votes
3answers
835 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. ...
4
votes
2answers
776 views

Handling Expires Headers in ASP.Net MVC

I need advice or suggestions on how to add Expires Headers to my CSS, Image and JavaScript files in ASP.Net MVC. A key issue is that the software is not in a single location. It is distributed to ...
4
votes
2answers
2k views

Forcing cache expiration from a JavaScript file

I have an old version of a JS file cached on users' browsers, with expiration set to 10 years (since then, I have learned how to set expires headers correctly on my web server). I have made updates to ...
4
votes
1answer
2k views

Enable Gzip compression and set Cache expire times in CakePHP

I am using CakePHP with Apache2. Analyzing my pages with the tool PageSpeed from Google, I find two main problems. The first is that I should enable gzipping of content, the second that I should ...
4
votes
3answers
146 views

Http caching - style.css?123 or style_123.css?

I'm currently playing around with a build / deployment script for minifying static resources. Following good practice I'd like to set an expire header far into the future for most of my javascript, ...
3
votes
3answers
209 views

Does CouchDB have an equivalent to Redis' expire?

Does CouchDB have an equivalent to expire like in Redis? Example for Redis expire: #!/usr/bin/env python import redis redis_server = redis.Redis(host='localhost',port=5477,db=0) r.set('cat','meow') ...
3
votes
1answer
196 views

Why does Google Chrome NOT use cached pages when I define the HTTP “Expires” header

I am sending validly formatted HTTP response "Expired" headers (e.g. "Wed, 04 May 2011 09:29:09 GMT") with a page served through https://localhost:{port}/ from a J2EE application, using ...
3
votes
3answers
1k views

Cache-Control headers repeated; valid or not? (Nginx)

I've got a resource in my Nginx that is configured like this: location ~ foo\.js$ { add_header Cache-Control public; expires 1d; } If I open this with Firebug and look at the headers it ...
3
votes
1answer
126 views

Android Development End of Life an application

I am currently writing a application that will eventually be going to market, but for now it will be in the Alpha stage. I am trying to come up with the best way to "time bomb" the application, so if ...
3
votes
2answers
1k views

How to set Expires HTTP header on a single JS file in Apache Tomcat?

I have a js file which is cached between 5-10 minutes, depending on whether I'm using tomcat from the eclipse (via GWT plugin) or starting tomcat as standalone. This is strange as I'm using GWT as my ...
3
votes
2answers
4k views

Add an Expires or a Cache-Control Header in JSP

How do you add an Expires or a Cache-Control Header in JSP. I want to add a far-future expiration date in an include page for my static components such as images, css and .js files. Any help is ...
3
votes
1answer
752 views

iis only Add Expires headers to images

Add expires headers in iis is very Easy,but this cache all the static files. now i want only add expires headers to images,how can i do that? even i want cached specific file?
3
votes
4answers
606 views

Setting expires header for a specific URI?

I'm trying to set expire header for a specific URI but for some reason it is not working, what I've done so far in the httpd.conf file was the following: <LocationMatch ...
3
votes
2answers
727 views

What is the best way to set far future expires on images with Django?

I am using django-compress with far future expires for my css and js files. Works great. I'd like to do something similar for other static content (images, flash, etc). I can set a far future ...
3
votes
4answers
4k views

nginx not setting expires headers on Rails static assets

I can't seem to get nginx to set expires headers on my static assets in my Rails app. My app is deployed using Phusion Passenger & nginx. Below is the related section of my nginx config file ...
3
votes
2answers
2k views

Getting confused about Expires headers when testing in Chrome

Getting very confused about 'Expires' header here! Sometimes it works as expected - and some times not. I am using the following code to set my expiration headers. Note this is being done with ...
2
votes
1answer
53 views

How to don't let user to use application after expiry time?

In my application I let user to buy application based of different plans, such as 2 hours free, 1 day, 1 week, and etc. I want to don't let user use the application after expiry time. I created a ...
2
votes
1answer
91 views

Expires vs max-age, which one takes priority if both are declared in a HTTP response?

If a HTTP response that returns both Expires and max-age indications which one is used? Cache-Control: max-age=3600 Expires: Tue, 15 May 2008 07:19:00 GMT Considering that each one refers to a ...
2
votes
1answer
104 views

How to expire cached pages when only the CSS url changes

Scenario: I make an update to a CSS file, push to the CDN, and need to change the version number in the query string to make sure that users' browsers download the latest copy Here's the problem: all ...
2
votes
1answer
333 views

ASP.NET Authentication sliding expiry time on custom ticket

I am creating my own authentication ticket using the following code: string formsCookieStr = string.Empty; FormsAuthenticationTicket ticket = new FormsAuthenticationTicket( 1, ...
2
votes
1answer
317 views

expires max on Nginx

I have a few questions about this directive: Is this what tells browser how often it should retrieve the file? What's the recommended setting hours/days/max for this on site css/image files? If I ...
2
votes
1answer
279 views

what’s the difference between Expires and Cache-Control headers?

what’s the difference between Expires and Cache-Control header? I am getting confused of both..
2
votes
2answers
209 views

Web Page ALWAYS Expired, IE7, (?)Proxy Cache

I'm working in PHP 5.3, on Apache. A couple of (important) people have reported that the "details" page of the site does not load for them in IE7, instead ALWAYS delivering a "Webpage has expired" ...
2
votes
0answers
244 views

Firefox & IE: Corrupted data when retrieved from cache

I have a request to the server which looks like this: http://localhost/Combine.aspx/flag/file1.js,file2.js,file3.js I have also tried this: ...
2
votes
1answer
419 views

Why is the default cache expires header Thu, 01 Dec 1994 16:00:00 GMT? What is the significance of this date?

When some requests are processed via WebSphere application server, it sets a cache expires header of Thu, 01 Dec 1994 16:00:00 GMT. This date seems to be in a lot of documentation as a example of a ...
2
votes
5answers
3k views

iPhone Ad Hoc distribution without expiration

The background story: I work for a company that develops and manufactures a commercial product which can have up to 100+ dedicated PC's in a farm. We only get a handful of new customers per year. We ...
2
votes
1answer
384 views

Why doesn't my expires headers make my files stay in cache?

I'm using valid expires and no-cache headers for my static files and they stay cached for as long as I keep browsing, but when I close my browser and use it back after a while I see the static files ...
2
votes
5answers
823 views

What is the proper way to tell the browser not to cache?

I have a web page that always needs to stay current. I do not want the browser to cache it. To that end, this meta tag is embedded with the page: <meta name="Expires" content="Tue, 01 Jun 1999 ...
2
votes
3answers
3k views

Add an Expires Header

I just made a website and after running it, i think is running slow. I've put YSlow firebug plugin, and I get a C mark for my website speed(very bad, because there are some images texts and some css) ...
1
vote
0answers
48 views

Under what circumstances could Expires, Last-Modified and ETags headers be ignored?

I have a web site that is recieving many unexpected requests for static resources (images, css files etc) that I would expect to be being served straight from the browser's cache. This is a ...
1
vote
2answers
115 views

How do I expire a session after one hour, like cookies?

How do I set up a session value that expires 1.hours from now in Rails? Cookies have an option like: cookies[:thing] = {:value => {:normal => "session stuff"}, :expires => 2.hours.from_now} ...
1
vote
0answers
72 views

How can I tell that this Leverage browser caching is on?

I am trying to set the expiring date on the images/js/css ext.. on my site because i see in a tool that i am using Page Speed that it will help performance: The following cacheable resources have a ...
1
vote
0answers
145 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
67 views

memcache php doesn't expire

I'm truing to use memcache in my PHP code: $memcache = new Memcache; $memcache->connect('10.0.0.21', 11244) or die ("Could not connect"); $store = 10; # in seconds $cache_key = "Counter"; ...
1
vote
4answers
56 views

automate http expires

I have a webapp written in PHP and i generate the headers with header() function. The problem is that when I'm making changes to the javascript code of my app, on clients side, the old javascript ...
1
vote
1answer
107 views

Expiration of cookie not working, is this wrong?

So I am using this code to drop a cookie, and having the page redirect if it has already been visited: <script language="JavaScript"><!-- function Get_Cookie(name) { var start = ...
1
vote
2answers
121 views

iPhone - Having a permanent provisionning profiles for my own apps on my own iPhone : any profile expires after a year

When developing an app, I used to test it with a Development provisionning profile. But, this provisionning profile, as well as the distribution one, have an expiration date. Does it mean that : any ...
1
vote
1answer
210 views

codeigniter session expires frequently

I'm using codeigniter for my app what my problem is session is expiring even though user is active on the site. These are the session settings.. i'm using DB session $config['sess_cookie_name'] ...
1
vote
1answer
73 views

log error- apache [closed]

How can i solve this issue in vertigo? [Thu May 19 23:19:19 2011] [alert] [client 127.0.0.1] C:/Users/fel/VertrigoServ/www/login/.htaccess: Invalid command 'ExpiresActive', perhaps mis-spelled ...
1
vote
3answers
165 views

Smart solution for expires headers

We want to set expires headers for used images, css and javascript to improve pagespeed, but we are aware of the cachingproblem when modifying a css or js script. Is it possible to add a meta or ...
1
vote
2answers
268 views

No expires header sent, content cached, how long until browser makes conditional GET request?

Assume browser default settings, and content is sent without expires headers. user visits website, browser caches images etc. user does not close browser, or refresh page. user continues to surf ...
1
vote
2answers
230 views

How to test if a Perl CGI::Cookie cookie is almost about to expire?

If the cookie is between 0 and x minutes away from expiration, I would like to refresh the expires value of that cookie to some set value (if the cookie is already expired, I do not want to refresh ...
1
vote
2answers
69 views

Add 'object' to a stack with expiry timers and get notified when it expires

I have a need to reserve an object (JSON) within my app for a period of time (typically 180 seconds) At some point the client may or may not come back and request this object by its key. The tricky ...
1
vote
3answers
162 views

Updating cached images/css/js without renaming

I'm interested how people deal with updating images/css/js with regards to the the browser cache. It's obviously good to use mod_expires and have a future expiry etc - but how can you then update ...

1 2 3