I have a php script running in an infinite loop that I need killed without restarting apache.
I have access to the server via remote desktop. Please advise.
Find the running scripts you want to kill:
tasklist /v | find "php"
Make note of the process ID, kill it with:
taskkill /PID 3776
Same as doing:
ps aux | grep php
kill 3776
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With