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.

The Website I am working on has some weird cache issues. When I click on Sign In the first time it goes to the login page but when I logout and try to click on Sign In it redirects back to the homepage. Also when I access the site from b4m.bid4med.com/myaccount it redirects me to Login Page, after login it takes me back to b4m.bid4med.com/myaccount which redirects back to login page which then realizes I am logged in so redirects me to homepage. This all works fine when I disable cache in browser. I have also put the php code

header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");

The site I am working on is located at b4m.bid4med.com

Username: user Password : Test123!

Sorry if I am not explaining it clearly.

share|improve this question

1 Answer

up vote 0 down vote accepted

I had some troublesome cache problems with login sessions too. Adding this header solved it for me:

header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); 

(could be anytime in the past i assume)

share|improve this answer
Thanks..it works – Kirtan Dec 10 '12 at 12:33
Great it helped. Please mark my answer as your accepted answer (with a green tick). – jtheman Dec 10 '12 at 14:04

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.