Friday, August 13, 2010

To Avoid "Page Has Expired" Warnings in IE

To avoid "Page Has Expired" warnings, set session.cache_limiter to private, and make sure that any form using the POST method submits to an intermediate processing page that redirects the user to a different URL.

ini_set('session.cache_limiter', 'private');

or

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

This is Helpful to Every One

No comments:

Post a Comment