Page 1 of 1

Reloading page

Posted: Mon Feb 01, 2021 4:02 pm
by Smee
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?

Re: Reloading page

Posted: Mon Feb 01, 2021 4:23 pm
by BaconFries
Page Properties and inserting into Meta Tags>Meta Tags>User Define"

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” />
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

Re: Reloading page

Posted: Mon Feb 01, 2021 5:53 pm
by Smee
Works a charm! Thank you for your assistance!