ERR_CACHE_MISS & PHP

Most likely the error ERR_CACHE_MISS has do do with PHP sessions. To get rid of it add few lines of code before your session start.

header('Cache-Control: no cache'); //no cache
session_cache_limiter('private_no_expire'); // works
//session_cache_limiter('public'); // works too
session_start();

Source: Stackoverflow

Back to Top