I want to run a shell script in php, but this shell script takes a long time to execute (it has sleep in it), I don't want the web server to block when executing this script.
I tried exec()
and shell_exec()
in php but the server stops until the shell script finishes!
Ben kabuk kendisi fork
yaptığını düşündüm ama bunu yapmak için nasıl bilmiyorum. Ben sadece php script kabuk komut diyoruz ve çalışmaya devam etmek istiyorum, komut herhangi bir sonuç bekliyorum değilim.
I tried running the shell script in the background with &
still get blocking :(
Any help is highly appreciated.