Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/04/2008, 11:16
Avatar de oso96_2000
oso96_2000
 
Fecha de Ingreso: junio-2002
Ubicación: Distrito Federal
Mensajes: 558
Antigüedad: 21 años, 10 meses
Puntos: 35
Re: download files

Yo uso algo asi:

Código PHP:
<?php
$fullpath 
'/ruta/a/tu/archivo.ai';
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private"false);
header("Content-Transfer-Encoding: binary");
header("Content-Type: application/octet-stream");
header("Content-Length: " filesize($fullpath));
header("Content-Disposition: attachment; filename=" basename($fullpath));
readfile($fullpath);
exit();
?>
__________________
Sin Ideas