<?php
   echo  $file = "http://wiwi-fct.com/elitbuzz_demo/zafar.webm";exit;
    header ('Content-type: octet/stream');
    header ('Content-disposition: attachment; filename='.$file.';');
    header('Content-Length: '.filesize($file));
    readfile($file);
    exit;
    ?>