I constantly have to change page content on my site but most browsers don't auto update the web pages cache if the content changes. Is there a way to automatically update users browser cache to show the latest content?
Thanks in advance,
Greg
Auto updating web pages cache.
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
- gregbarnes
-
- Posts: 55
- Joined: Sun Oct 27, 2013 8:15 am
- Location: Perth, Western Australia
- Contact:
Auto updating web pages cache.
Cheers for now,
Greg
Greg
- BaconFries
-
- Posts: 5974
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Auto updating web pages cache.
BaconFries wrote: Wed Feb 05, 2025 11:34 pm You can add the following code using Page Properties and inserting into Meta Tags>Meta Tags>User DefineOr via the use of .htacess (server)Code: Select all
<meta http-equiv="Cache-Control" content="no-cache" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" />
# DISABLE CACHINGYou can also enable cache busting (Available since WBB16)Code: Select all
<IfModule mod_headers.c> Header set Cache-Control "no-cache, no-store, must-revalidate" Header set Pragma "no-cache" Header set Expires 0 </IfModule>
viewtopic.php?p=447106#p447106
- gregbarnes
-
- Posts: 55
- Joined: Sun Oct 27, 2013 8:15 am
- Location: Perth, Western Australia
- Contact:
Re: Auto updating web pages cache.
Thanks so much - I will give all of that a try.
Cheers, Greg
Cheers, Greg
Cheers for now,
Greg
Greg