Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/10/2010, 14:52
Avatar de dreamconception
dreamconception
 
Fecha de Ingreso: octubre-2010
Ubicación: Mexico-Dinamarca
Mensajes: 22
Antigüedad: 13 años, 6 meses
Puntos: 2
Respuesta: Como me descargo un gzip?

Proba esto;
Código PHP:
header('Content-Type: application/octet-stream');
header('Content-Length: '.filesize($destino));
header ("Content-Disposition: attachment; filename=".$destino); 
header("Content-Transfer-Encoding: binary");
readfile($destino); 
Tal vez esta también;
Cita:
header("Content-type: application/force-download");