Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/10/2008, 08:43
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: alguna forma real de borrar la cache

Mmmm yo ocupo estos headers:
Código php:
Ver original
  1. header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
  2.     header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
  3.     header('Content-Transfer-Encoding: none');
  4.     header('Pragma: public');
  5.     header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  6.     header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');

Pruebalos.

Saludos.