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: 69
- 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: 6340
- 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: 69
- 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
-
desegno
-

- Posts: 8
- Joined: Thu Dec 17, 2015 3:16 pm
Re: Auto updating web pages cache.
Or via the use of .htacess (server)
# DISABLE CACHING
excuse me, where is this?
# DISABLE CACHING
excuse me, where is this?
- BaconFries
-

- Posts: 6340
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Auto updating web pages cache.
What do you mean "where is this?". It is not part of the software if that is what your asking. It is a server file which isexcuse me, where is this?
generally found in document root directory public_html, www, or htdocs of your website. To use you should contact your host for help.
It is basically just a text(.txt) file with the code shown inserted renamed to .htaccess and then saved you will get a warning do you wish to save without the extension (.txt) just say yes you then upload to the above mentioned. Note as it is a server file all help should be made to them really.