Restart Apache ############################ sudo systemctl restart apache2 ############################ CronTAB ############################ crontab -e ############################ automate every 1 sec, create [run.sh] ############################ #!/bin/bash while true; do php /var/www/html/newbot.php sleep 1 done ############################ then run command ############################ nohup ./run.sh & ############################ to kill it ############################ root@test-bin:/var/www/html# pgrep -f run.sh 3033 root@test-bin:/var/www/html# kill 3033 ############################