Tuesday 5 February 2013

Back button. Page expired problem

On IE when user hits back button they get the classic IE "webpage has expired" message.

I have found that setting the following in my php.ini has solved this.
 
'session.cache_limiter=private'

or

You can try this. working for all browser

ini_set("session.cache_limiter", "must-revalidate");

This might help you out...