Ver Mensaje Individual
  #4 (permalink)  
Antiguo 06/07/2005, 17:47
Diegho
 
Fecha de Ingreso: enero-2005
Mensajes: 2
Antigüedad: 19 años, 2 meses
Puntos: 0
Muchisimas gracias a todos...

con la data que me dieron usé hice el siguiente script:

<?
$filename="files/file0001.bin";

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");

header("content-type: application/force-download");
header("content-type: application/octet-stream");
header("content-type: application/download");

header("Content-Disposition: attachment; filename=lalala.zip;");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($filename));

readfile("$filename");
exit();

?>


y funciona perfecto...

Muchisimas gracias nuevamente.