This content has been marked as final.
Show 3 replies
-
1. Re: Users seeing old versions of site until refreshing and/or clearing cache
Adobe.Hacker Feb 13, 2013 8:05 AM (in response to pbsum83)You could try this code:
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
No guarantees for it to work though.
-
2. Re: Users seeing old versions of site until refreshing and/or clearing cache
Nancy O. Feb 13, 2013 9:40 AM (in response to pbsum83)Try 1 or 2 of these Meta Tags.
If cached version is older than the served page, browsers should display the served page.
<meta http-equiv="Last-Modified" content="13 February, 2013 22:31:00 GMT" />
Tells browsers to not cache page:
<meta http-equiv="pragma" content="no-cache">
Tells browsers to refresh page every xxx seconds (24 hours = 86400 seconds).
<meta http-equiv="refresh" content="86400">
Nancy O.
-
3. Re: Users seeing old versions of site until refreshing and/or clearing cache
pbsum83 Feb 13, 2013 10:11 AM (in response to Nancy O.)Interesting! Thank you both for the Meta Tag suggestions. Will give those a try.



