Am using a centos7 VPS server, recently I noticed that my website Crontab
is not executing periodically on it own as scheduled. I have list of cron jobs but not of it will execute when the time come, but if I login to my CWP web panel
and manually click run it will execute my command successfully.
Please how do I fix my Crontab issue?
0 0,12 * * * rm -rf /home/www/temp/*
* * * * * /usr/local/bin/php /home/www/public_html/debug/cron.php >> /home/www/public_html/debug/_exec.log 2
In php cron.php
<?php
echo "Received Debugging Request";
?>