Moon
Moon

Reputation: 22565

Avoid 'waiting for response' in php?

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'");

Upvotes: 1

Views: 1223

Answers (1)

jrn.ak
jrn.ak

Reputation: 36619

For a Linux host, you should only need to add & to the end of your exec() call:

$a = exec("curl 'http://lab.test.com/test/test/down.php?c=23212' -o 'test.avi' &");

It's a little more complex for Windows:

$WshShell = new COM("WScript.Shell");
$a = $WshShell->Run("curl 'http://lab.test.com/test/test/down.php?c=23212' -o 'test.avi'", 0, false);

Upvotes: 1

Related Questions