. El problema es que me descarga por ejemplo el emule de 4.03 megas solo me descarga 3.02 megas
tengo el siguiente codigo para descargar:
Código PHP:
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
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));
ob_clean();
flush();
readfile($file);
exit;
php_value set_time_limit 7200
php_value memory_limit 200MB
pero me sigue cortando la descarga
alguna ayuda?