Tagged Questions
The if-modified-since tag has no wiki summary.
9
votes
1answer
253 views
Why is PHP discriminating between .php and .abc extensions for caching?
There seems to be a problem between how PHP engine handles identical files that differ only in their file extension.
Problem: "An If-Modified-Since conditional request returned the full content ...
5
votes
4answers
455 views
What is the point of If-Unmodified-Since/If-Modified-Since? Aren't they superseded by ETags?
There seem to be two distinct ways to implement conditional requests using HTTP headers, both of which can be used for caching, range requests, concurrency control etc...:
If-Unmodified-Since and ...
4
votes
2answers
463 views
(Weak) ETags and Last-Modified
As far as I understand the specs, the ETag, which was introduced in RFC 2616 (HTTP/1.1) is a predecessor of the Last-Modified-Header, which is proposet to give the software-architect more controll ...
3
votes
6answers
1k views
Chrome - why is it sending if-modified-since requests?
I have a page with lots of small images (icons). When used with chrome, each time the page is reloaded, chrome requests each icon from the server with if-modified-since header.
All icons are served ...
1
vote
1answer
31 views
DOS dir /tw switch not working
I'm trying to compare a list of files with a control file on their modified timestamp using
dir /b /tw /od controlfile olderfile | more +1
this should return the controlfile as the modified date ...
1
vote
3answers
77 views
Sync local file with HTTP server location (in Python)
I have an HTTP server which host some large file and have python clients (GUI apps) which download it.
I want the clients to download the file only when needed, but have an up-to-date file on each ...
1
vote
1answer
136 views
When does a webbrowser send If-Modified-Since?
I'm serving a dynamically created recent.rss via python flask and naturally that way it is always sent via 200 OK. I was going to fix this by setting the header Expires a week into the future and ...
1
vote
1answer
183 views
Insomnia headaches on a simple javascript Cache, while If-Modified-Since headers are in place!
Hello fellow earthlings! For some time I'm fantasizing possible solutions, but i'm out of clues for this strange problem. Let me describe the reason, then the problem:
In order to combine the ...
1
vote
2answers
107 views
Is there an existing solution for WebRequest caching in .NET (based on If-Modified-Since)?
I have an expensive WebRequest that I know can be cached.
Is there an existing solution that allows caching of web requests based on Last-Modified/If-Modified-Since and (optionally) ETags?
1
vote
0answers
65 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
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.
...
1
vote
2answers
612 views
Refresh image with Javascript, but only if changed on server
I want to reload an image on a page if it has been updated on the server. In other questions it has been suggested to do something like
newImage.src = "http://localhost/image.jpg?" + new ...
0
votes
0answers
22 views
$_SERVER['IF_MODIFIED_SINCE'] nor anything else really is sent back by Safari
safari is NOT sending back any request headers & i go nuts. i'm ashamed it took me all that time to realize it (sending back 304 since a while, never realized that safari issue until now)
if ...
0
votes
1answer
94 views
Getting if-modified-since header to work with WCF
I am trying to get the "if-modified-since" header to work with my WCF web service.
When a user makes a request to my service, I add an ETag to the outgoing response that contains the timestamp of the ...
0
votes
2answers
98 views
Python: Optimal algorithm to avoid downloading unchanged pages while crawling
I am writing a crawler which regularly inspects a list of news websites for new articles.
I have read about different approaches for avoiding unnecessary pages downloads, basically identified 5 header ...
0
votes
1answer
64 views
“If-Modified-Since” Header?
I wanted to know how to check the server response of "If-Modified-Since" header sent by my browser.
I am not sure how do I achieve it.
Any help would be a great deal to me, Thanks.
0
votes
1answer
286 views
How to insert Last-Modified HTTP-header in Wordpress?
The site doesn't send Last-Modified header in its response.
I know I should insert somewhere something like header("Last-Modified: " . the_modified_date()); but where?
0
votes
1answer
220 views
How to make Safari send if-modified-since header?
When I generate a page I send headers
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html; charset=utf-8
Last-Modified: Mon, 04 Apr 2011 20:08:33 GMT
Vary: Accept-Encoding
Date: Mon, 11 ...
0
votes
1answer
295 views
Image reload prototype if-modified
I use prototype on the client side.
I need to change picture on the page without reloading. So in my .js file I change the src of a picture and it works ok. But I also need that if the same image ...
0
votes
1answer
158 views
What response should If-Modified-Since HTTP Header return if request is HEAD?
If you send a GET request with an If-Modified-Since header, the server suports it and the file hasn't changed, the server will return a 304 response.
If you sent a HEAD request in the same ...
0
votes
0answers
224 views
if-modified-since is not sent if using gzip on a picture with RESTEasy (@GZIP)
Using REsteasy I send a gzipped picture, setting last-modified header.
@GET
@Path("/blah-blah")
@GZIP
public Response getImage(){
byte[] image = getImageArray();
ResponseBuilder builder = ...
0
votes
1answer
620 views
Get Browser to send both If-None-Match and If-Modified-Since
My Browser isn't sending back an If-Modified-Since Header for PHP generated Content
on the first request my script sends:
(Status-Line) HTTP/1.1 200 OK
Date Thu, 21 Jan 2010 08:55:25 GMT
Server ...
0
votes
1answer
171 views
Read If-Modified-Since header in PHP CGI
My PHP script depends on being able to read the value of the If-Modified-Since header (yes, I know how to do this).
It worked correctly when I used PHP as mod_php, but now that I've switched to suPHP ...