Auto updating web pages cache.

All WYSIWYG Web Builder support issues that are not covered in the forums below.
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
Post Reply
User avatar
gregbarnes
 
 
Posts: 55
Joined: Sun Oct 27, 2013 8:15 am
Location: Perth, Western Australia
Contact:

Auto updating web pages cache.

Post by gregbarnes »

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
Cheers for now,
Greg
User avatar
BaconFries
 
 
Posts: 5974
Joined: Thu Aug 16, 2007 7:32 pm

Re: Auto updating web pages cache.

Post by BaconFries »

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 Define

Code: Select all

<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
Or via the use of .htacess (server)
# DISABLE CACHING

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>
You can also enable cache busting (Available since WBB16)
viewtopic.php?p=447106#p447106
User avatar
gregbarnes
 
 
Posts: 55
Joined: Sun Oct 27, 2013 8:15 am
Location: Perth, Western Australia
Contact:

Re: Auto updating web pages cache.

Post by gregbarnes »

Thanks so much - I will give all of that a try.
Cheers, Greg
Cheers for now,
Greg
Post Reply