3

I've built a Facebook canvas app, which has been added as a Page Tab. In Internet Explorer, when I click a link from the homepage of the page tab to another page, and then press the browser back button, I get a message from IE:

Webpage has expired Most likely cause: The local copy of this webpage is out of date, and the website requires that you download it again.

If I press refresh then the page displays correctly, but I'd like to be avoid this extra step.

Here's the link to the app: https://www.facebook.com/FindAnyFilm/app_324458010982848

Click on one of the latest entries, then press the browser back button.

BartoszKP
  • 34,786
  • 15
  • 102
  • 130
Nic Rodgers
  • 283
  • 1
  • 3
  • 7

1 Answers1

5

Could have to do with the caching headers your server sends,

Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma:        no-cache

Try changing these and see if the problem persists; see https://stackoverflow.com/a/6654296/1427878 for further info on IE & caching behavior.

Community
  • 1
  • 1
CBroe
  • 91,630
  • 14
  • 92
  • 150