23/06/2013, 11:39
|
| | Fecha de Ingreso: abril-2006
Mensajes: 73
Antigüedad: 18 años, 7 meses Puntos: 0 | |
Respuesta: Caducar Link Sabéis donde esta el error?
$filename = "../(aqui pongo el nombre del archivo)" . $archivo;
header("Expires: -1");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Content-type: application/zip;\n"); //or yours?
header("Content-Transfer-Encoding: binary");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0");
header("Pragma: no-cache");
$len = filesize($filename);
//header("Content-Length: $len;\n");
$outname=$archivo;
header("Content-Disposition: attachment; filename=".$outname.";\n\n");
readfile($filename);
Gracias! |