Hello to all forum, I developed an application but I have a problem
that i can not solve, precisely that this problem does not occur
with the browsers: Chrome, Opera, Maxthon, but rather only with
Mozilla Firefox, the problem there is the same in Mobile and Desktop,
when I click the back button page or form, the browser displays an error
by Mozilla (cache problem), see picture attached to this email.
I insert in any application on section “onApplicationInit” (as first instruction)
the following PHP two statements:
header (‘Cache-Control: no-cache’);
session_cache_limiter (‘private_no_expire’);
then I am persisting the 'error I tried to replace them with the following standard:
header (“Cache-Control: max-age = 600”); // 10 minutes (10 * 60sec)
session_cache_limiter (‘public’); // works
But i solve nothing.
Thank you very much for your response.