I have a customer who likes to change images on his site regularly. The problem is, every time I upload the new pics he doesn't see them because the pages always load from his cache. He calls complaining that I haven't uploaded the images, and every time I have to remind him to press F5 to reload the page.
Is there a way to make the site always load pages from the server instead of from the cache?
Reloading page
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
- BaconFries
-
- Posts: 5974
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Reloading page
Page Properties and inserting into Meta Tags>Meta Tags>User Define"
The one with the date change this to a date in the future.
If you wish it to load from the server then this requires the use of a .htaccess file.
Similar thread with answers links regarding the use of .htaccess
https://www.wysiwygwebbuilder.com/forum ... 4&p=439506
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” />
If you wish it to load from the server then this requires the use of a .htaccess file.
Similar thread with answers links regarding the use of .htaccess
https://www.wysiwygwebbuilder.com/forum ... 4&p=439506
Re: Reloading page
Works a charm! Thank you for your assistance!