Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I may be wrong by saying it is my users browser but i have a question when updating my online store.

I have recently redesigned my homepage store which i am currently in the middle of completing.

It can be found through http://www.hot-water-cylinders.com/

Bascially, i realized going through a computer that had already been to the website and stored it in its cache everything was out of place, the image files linked into the document where the old ones use and basically clearing my browsers data was the only way of fixing the layout,

My question is that will my returning visitors have to deal with this issue too, like having to clear their cache and is the anyway to prevent this?

Thanks,

Kieren.

share|improve this question

2 Answers

This is how HTTP caching is supposed to work.

The best way to avoid this is to make the resource URL:s unique. If you're doing all of this manually try putting the new resources in a versionen folder (/2.0/css, /2.0/img, etc).

share|improve this answer

Try using:

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

It will tell browser not to use the cache, I think.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.