Hi,
I have a php script that uses exec() function to execute curl to download file. The file is about 600mb. So when I acess the php file on a browser, browsers shows me 'waiting for response' message.
How do I avoid that?
my php source is
$a = exec("curl 'http://lab.test.com/test/test/down.php?c=23212' -o 'test.avi'");