Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/02/2009, 23:54
c0w
 
Fecha de Ingreso: enero-2008
Mensajes: 146
Antigüedad: 16 años, 3 meses
Puntos: 0
Sonrisa Descarga forzada

Hola!

Hice un php para forzar descargas y anda bien:

Código PHP:
<?php
$id
=$_GET['cfg'];
$path=$_GET['ph'];
$enlace 'Configs/'.$path.'/'.$id ;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
Pero cuando el archivo tiene espacios por ejemplo "Copia de archivo.cfg", al descargarla solo se ve el "Copia" y no se baja la extencion.

Alguna solucion? Gracias!