Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/07/2009, 07:36
Avatar de abimaelrc
abimaelrc
Colaborador
 
Fecha de Ingreso: mayo-2009
Ubicación: En el planeta de Puerto Rico
Mensajes: 14.734
Antigüedad: 15 años
Puntos: 1517
Respuesta: Descarga de archivos desde el servidor

Para mi entender creo que el problema esta en
header ("Content-Type: application/octet-stream");

Te sugiero que coloques mejor el tipo de archivo que quieres bajar. Por ejemplo si quieres bajar un pdf te sugiero que uses
header('Content-type: application/pdf');

Ejemplo de php.net
Código PHP:
<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');

// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');

// The PDF source is in original.pdf
readfile('original.pdf');
?>