Creé un script de descarga de archivos en PHP, funciona, pero los navegadores web informan el archivo como "Longitud desconocida". Mi código es el siguiente:Envío del tamaño de archivo correcto con script de descarga de PHP
function downloadFile($file){
// Set up the download system...
header('Content-Description: File Transfer');
header('Content-Type: '.mime_content_type($file));
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: '.filesize($file));
// Flush the cache
ob_clean();
flush();
// Send file to browser
readfile($file);
// DO NOT DO ANYTHING AFTER FILE DOWNLOAD
exit;
}
Interesante. Tendré que investigar eso. –
Gracias, estaba obteniendo el tipo de contenido "gzip" en mi descarga y pude deshacerme de él con su línea htaccess, ahora puedo ver el progreso de la descarga nuevamente porque el navegador lee el tamaño total del archivo correctamente. – adrianTNT