How to disallow browsers to cache my wwb page?

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
Lemoner
 
 
Posts: 25
Joined: Fri Apr 08, 2016 2:34 am
Contact:

How to disallow browsers to cache my wwb page?

Post by Lemoner »

I have a lot of changes on my php page everyday and users see incorrect styles .The cached page doesn't look correct.
I tryed to switch off caching by this way:

(in the head of the page)

<meta http-equiv="Cache-Control" content="no-cache">

But its not work. Browsers still use cache.

How to totally swith off cache ?
SCRUM Only
User avatar
Pablo
 
Posts: 23395
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: How to disallow browsers to cache my wwb page?

Post by Pablo »

Note that this is not specific to the application.
But this has worked for other users:

Code: Select all

<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
Post Reply