Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/05/2013, 11:52
Bernoo
 
Fecha de Ingreso: noviembre-2008
Mensajes: 100
Antigüedad: 15 años, 6 meses
Puntos: 4
Respuesta: Problemas al descargar archivo mediante PHP

hace algunos dias tuve un problema parecido, lo solucione de la siguiente manera:


Código:
	header("Content-Type: $type");
	header("Content-Disposition: attachment; filename=$filename");
	header("Content-Transfer-Encoding: binary");
	header("Content-Length: " . $size);
	//Download File
	ob_end_clean();
	flush();
	readfile($file);
espero te sirva