3
votes
4answers
640 views
.htaccess not working - only caching images and not JS or CSS [closed]
Duplicate:
Why isn’t my javascript & css caching ?
I'm noticing that I'm only receiving 304 HTTP codes (cached content) for images but not JavaScript or CSS.
My .htaccess file is:
Options …
3
votes
2answers
164 views
What takes precedence: the ETag or Last-Modified HTTP header?
For two subsequent requests, which of the following two headers is given more weight by browsers should one of them change: ETag or Last-Modified?
3
votes
6answers
190 views
Last Updated Date: Antipattern?
I keep seeing questions floating through that make reference to a column in a database table named something like DateLastUpdated. I don't get it.
The only companion field I've ever seen is …
2
votes
3answers
73 views
Is there something like Perl’s Win32::FileNotify for Linux or OS X?
I've been using Win32::FileNotify on Windows, and I was curious to know if there were something similar for Linux and OS X. I haven't been able to find such a module using Google. Does anyone here …
2
votes
1answer
274 views
Get last modified and other file info from remote server with PHP
A weekly mp3 is uploaded to an external server.
I manually copy this to my server and link it for podcasting and archive etc.
The external file is then replaced the following week.
I can copy the …
2
votes
6answers
716 views
How to check if directory contents has changed with PHP?
I'm writing a photo gallery script in PHP and have a single directory where the user will store their pictures. I'm attempting to set up page caching and have the cache refresh only if the contents …
2
votes
5answers
750 views
How can I find the newest created file in a directory?
Is there an elegant way in Perl to find the newest file in a directory (newest by modification date)?
What I have so far is searching for the files I need, and for each one get it's modification …
1
vote
3answers
134 views
mod_rewrite RewriteCond based on Last-modified? (.htaccess)
I know that we can easily base a RewriteCond on any http request header. But can we check (some of) the response headers that are going to be sent? In particular, the Last-modified one?
I want to …
1
vote
2answers
91 views
how to enable Last-Modified header for static resources served by Google App Engine (Java version)?
Is there a way to turn on the Last-Modified header for static resources served up by Google App Engine? I have a large zip file that my app serves up to an iPhone client app, and I'd like to only …
1
vote
3answers
515 views
C# find most recent file in dir
I need to find the most recently modified file in a directory. I know I can loop through every file in a folder and compare File.GetLastWriteTime but is there a better way to do this without looping?
1
vote
3answers
302 views
MySQL table modified timestamp
I have a test server that uses data from a test database. When I'm done testing, it gets moved to the live database.
The problem is, I have other projects that rely on the data now in production, so …
1
vote
2answers
151 views
Apache2 mod_perl Last-Modified header ignored
I have a perl generated page. The contents of this page change every 30 minutes, so I'm setting $r->set_last_modified() to the time the contents last changed.
That all works well and I can see the …
0
votes
2answers
45 views
how to tell when a HTTP web page has changed when it is of type html/text?
Hi,
I'm trying to work out the algorithm to tell if non-binary files on the web have changed or not. I was going to go with:
LastModified datetime from header, and then if these aren't present …
0
votes
0answers
103 views
ASP.NET MVC getting last modified date/FileInfo of View
I'm required to include the last modified date on every page of my applications at work. I used to do this by including a reference to <%= LastModified %> at the bottom of my WebForms master page …
0
votes
2answers
139 views
Can a Class in Java determine if it has been modifier?
I have, a Starter.class which updates some classes when needed, then instantiate and runs a Client class.
Is it possible (if yes, how) for the instance of Class to know if it has been modified since …
