Results 1 to 2 of 2

Thread: What is the best way to force browser cache update?

Hybrid View

  1. #1
    Join Date
    Jan 2010
    Location
    Hyperborea
    Beans
    2,045
    Distro
    Ubuntu 16.04 Xenial Xerus

    What is the best way to force browser cache update?

    Sorry but I did a lot of searching and did not really understand the answers that I found.
    I recently did a lot of updates on a site that I maintain but found that no-one was seeing the new pages.
    Of course I know to press F5 to update the browser's cache but the general public do not.
    The site was created a long time ago and could probably be completely re-written or a CMS installed. Suggestions welcome.
    My index.htm looks like this.
    Code:
    <html> 
    <head> 
    <title>Longhope Lifeboat Museum Trust</title> 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    </head> 
    <frameset rows="75,460*" cols="100,*" frameborder="NO" border="0" framespacing="0">  
      <frame name="cornerFrame" scrolling="NO" noresize src="logo1.htm" marginwidth="0" marginheight="0" > 
      <frame name="topFrame" src="top.htm" marginwidth="0" marginheight="0" noresize scrolling="AUTO" > 
      <frame name="leftFrame" src="navvy1.htm"> 
      <frame name="mainFrame" src="home.htm"> 
    </frameset> 
    <noframes>  
    <body bgcolor="#FFFFFF"> 
    </body> 
    </noframes>  
    </html>
    As you can see it just loads pages into frames, so I guess that I would have to put "no-cache" into almost every page on the site.
    If I was using Drupal or Joomla (or some other CMS) is it possible to force an update of the entire site with just one edit?
    Thanks for any advice.

  2. #2
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: What is the best way to force browser cache update?

    You can add

    Code:
    <meta http-equiv='cache-control' content='no-cache'>
    <meta http-equiv='expires' content='-1'>
    to the <head></head> section of the page. Together those will force the browser not to cache the content.

    Since these are really HTTP commands, you can alternatively place directives in Apache to deny caching. This method will apply to all content downloaded from the site, not just the page in question. Choose one or the other method depending on your needs.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •