How to Clear Cache

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sure

    #1

    How to Clear Cache

    Hello Group,

    I have a php file which will list the pending
    task for each developer. If the developer
    changes some thing it will update to database.
    Once the user clicks the update button it shows
    the another page and there will be button back to
    list of pending task. It will again fetch from database.

    At the second time if user update some other data. It giving
    me the old data list also.

    Anyone Pls suggest me how to clear the cache in PHP.

    I used ClearStatCache( ) this is not working. And also I added

    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <META HTTP-EQUIV="expires" CONTENT="0"> in my php file.
  • Daniel Tryba

    #2
    Re: How to Clear Cache

    Sure <csuresh01@yaho o.com> wrote:[color=blue]
    > At the second time if user update some other data. It giving
    > me the old data list also.
    >
    > Anyone Pls suggest me how to clear the cache in PHP.[/color]

    Don't try to fix the symptoms, fix the real problem. You simply can't
    clear a cache in a browser.
    [color=blue]
    > I used ClearStatCache( ) this is not working. And also I added
    >
    > <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    > <META HTTP-EQUIV="expires" CONTENT="0"> in my php file.[/color]

    Don't use those silly equivs if you can use the real http headers.
    Setting the expires header in the past should normally be enough.

    You could send a correct last-modified header (which you have to store
    somewhere (might already be in the database)) and check if a client
    does a conditional request (if-not-modified-since IIRC).

    You should take a look at chapter 13 and 14.9 of the HTTP 1.1 protocol
    (rfc 2616) to find out how to control/prevent/hint caching.

    Comment

    • Erwin Moller

      #3
      Re: How to Clear Cache

      Sure wrote:
      [color=blue]
      > Hello Group,
      >
      > I have a php file which will list the pending
      > task for each developer. If the developer
      > changes some thing it will update to database.
      > Once the user clicks the update button it shows
      > the another page and there will be button back to
      > list of pending task. It will again fetch from database.
      >
      > At the second time if user update some other data. It giving
      > me the old data list also.
      >
      > Anyone Pls suggest me how to clear the cache in PHP.
      >
      > I used ClearStatCache( ) this is not working. And also I added
      >
      > <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
      > <META HTTP-EQUIV="expires" CONTENT="0"> in my php file.[/color]

      Hi,

      Caching can be a pain in the ... side?
      :-)

      You use:
      <META HTTP-EQUIV="expires" CONTENT="0">
      Why did you put 0 there?

      Are you aware that "0" is an illegal value?

      (Illegal values should mean: expire immediately)

      Read this:
      A taxonomy of HTML META tags, with references, as used to improve search engine indexing, select character sets, etc.


      But that doesn't solve your problem, does it?

      I can think of two solutions:

      1) GOOD SOLUTION: Start reading a lot about caching and try to solve it by
      sending a right set of header. You could start here:


      2) Poor men solution (the one I use. :P)
      Trick possible cachingmechanis ms (in the browser or a proxyserver) by asking
      for 'another' page by adding a little extra to the script.

      Like this:

      <form action="yourpag e.php?dontcache me=<?= time() ?>" >


      By the way: I never experienced the problem you describe with forms, only
      with hyperlinks. Not sure if that means anything...

      Good luck!

      Regards,
      Erwin Moller

      Comment

      Working...