when attempt download file have name especial characters, (for example ó, í, ñ,...) download empty file. if file has normal name it's download correctly. here php code:
$archivo = $_get['archivo']; $ruta = "c:\archivoschirivobpm\\" . $archivo; $ext = pathinfo($archivo, pathinfo_extension); header('content-description: file transfer'); header('content-type: ' . $ext); header("content-disposition: attachment; filename=\"$archivo\""); header('content-transfer-encoding: binary'); readfile($ruta);
Comments
Post a Comment