Veo que tienes una pagina de header pero si estas poniendo bien todos los requeridos..
Código PHP:
Ver original// Fecha en el pasado
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // siempre modificado
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // HTTP/1.1
header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); // HTTP/1.0
Tambien la forma de construir tu ajax.. yo uso lo siguiente..
Código Javascript
:
Ver originalvar peticion = false;
var testPasado = false;
try {
peticion = new XMLHttpRequest();
} catch (trymicrosoft) {
try {
peticion = new ActiveXObject("Msxml2.XMLHTTP");
} catch (othermicrosoft) {
try {
peticion = new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
peticion = false;
}
}
}
if (!peticion)
alert("ERROR AL INICIALIZAR!");