Entry
Is there a way to prevent "Warning: Page has Expired " when back is clicked?
Apr 10th, 2002 00:36
Isak Venter, Arsen Yeremin, David Rider,
This usually happens when the page you are trying to go to has been
submitted via
<form method=”post”>. If you change the form to <form method=”get”>,
it
should not happen anymore.
Try using:
If you are using sessions open your php.ini file and change the value
for session.cache_limiter to have no value, like this:
session.cache_limiter = ;
or
session.cache_limiter = none;
If you do this you can use POST and the back button without worrying
about the "page expired" warning.
The session.cache_limiter returns control of the cache to the browser
if it's got no value