Cuando realizo el download de un archivo con firefox no me coloca la extencion del mismo. es un problema del php?
Si funciona en IE.
Código PHP:
$Download = "documentos/1265704621_PRUEBA 2.doc";
if ($Download){
if (file_exists($Download)){
$download_size = filesize($Download);
$filename = basename($Download);
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=$filename");
header("Accept-Ranges: bytes");
header("Content-Length: $download_size");
@readfile($Download);
die;
}else{
$Mensaje = "No se ha encontrado el archivo solicitado!!!";
};
}