Force page refresh

Is there a setting in RW to ensure a page is refreshed when first opened? We have Kuler’s SQL database stack and data is added fairly continuously. However we have to refresh the page manually to see the new data. We’d like to be able to open the page and know that the page has been refreshed from the last session - and will therefore display the latest data.

I don’t own it but maybe this will help?

Aww thanks Rob. That might do it!

Might try adding this to the head section of the page:

<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />

If that doesn’t work then you would probably need to do this with a PHP script:

   <?php header("Cache-Control: no-cache, no-store, must-revalidate");    ?>

I’m on my iPad so these aren’t tested.

Thanks very much Doug. Will give these a try.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.