09/03/2011, 10:48
|
| | Fecha de Ingreso: marzo-2011
Mensajes: 2
Antigüedad: 13 años, 8 meses Puntos: 0 | |
Respuesta: Error PHP filemtime() y Cannot modify header information Muchas gracias.
Te indico el código, espero hacerlo bien.
En el error PHP Warning, filemtime() [<a href='function.filemtime'>function.filemtime</a>]: stat failed for cache/e3ec5a1544fdd3002a4687e7d3864fdf.png in /usr/home/
indica la línea 444 del código que es la siguiente:
function filemtime_compare($a, $b) {
return filemtime($a) - filemtime($b);
}
Respecto al error siguiente de PHP Warning: Cannot modify header information - headers already sent by (output started at /usr
Indica estas líneas del código
}
clearstatcache();
$fileSize = filesize ($cache_file);
// send headers then display image
header ('Content-Type: ' . $mime_type);
header ('Accept-Ranges: bytes');
header ('Last-Modified: ' . $gmdate_mod);
header ('Content-Length: ' . $fileSize);
header ('Cache-Control: max-age=9999, must-revalidate');
header ('Expires: ' . $gmdate_mod);
readfile ($cache_file);
die();
}
No sé si esto es suficiente. Muchas gracias de nuevo.
Saludos |