Results 1 to 4 of 4

Thread: Changes to published pages not taking effect.
      
   

  1. #1
    sdrich is offline Sergeant
    Join Date
    Aug 2007
    Posts
    35

    Default Changes to published pages not taking effect.

    After making changes to my site and republishing, the changes are not taking effect. Could this have to do with page cache? It seems a couple of weeks ago someone had some code to enter into each page about page cache. Could someone point me in that direction? Thanks

  2. #2
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,721

    Default Re: Changes to published pages not taking effect.

    Hi, you can use the no cache & the code is below & enter in your page. This is normally used in pages that are being updates every few seconds like news & stock market pages. If you use this & have any large pages it will slow your visitors from having a quicker loading page every time they revisit a page as it will be like a fresh page every time.
    May also be worth reading this part below?

    Good luck.
    -----------------------------------------------------------------------------------------------------------------------

    The Pragma statement up above sometimes fails in IE because of the way IE caches files. There is a 64K buffer that must be filled before a page is cached in IE. The problem is that the vast majority of the pages using the Pragma statement put it between the HEAD tags.
    The HEAD loads and the Pragma comes into play. The browser gets the go ahead to not cache the page, however there is not yet a page to not cache. How's that for backwards logic? Since the page hasn't filled the 64K buffer, there's no page so the Pragma is ignored. Thus...the page is cached.
    The solution is to play to the buffer. If you're really serious about the Pragma working, place another set of HEAD tags at the bottom of the document, before the end HTML tag and re-enter the Pragma. This is a suggestion straight from Microsoft Support. The page would look like this:

    ------------------------------------------------------------------------------------------------------------------------
    <HTML>
    <HEAD>
    <TITLE>---</TITLE>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    <BODY>

    Text in the Browser Window

    </BODY>
    <HEAD>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    </HTML>

    This way the Pragma is pretty sure to be read when the buffer is filled.

  3. #3
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Changes to published pages not taking effect.

    Very interesting !!
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  4. #4
    sdrich is offline Sergeant
    Join Date
    Aug 2007
    Posts
    35

    Default Re: Changes to published pages not taking effect.

    Thanks General, I'll give it a try.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49