So Right now I use below code , But If the external file is like 100mb It takes forever for the download to be prompted.How can I prompt download immediately and start streaming download to users.
<?php
header( 'Content-Type: application/x-bittorrent' );
header( 'Content-Disposition: attachment; filename="torrent' );
echo file_get_contents("http://externallink.com/sizemorethan100mb");
?>
EDIT : its not duplicate , duplicated question does not provide solution for external url.