Page 1 of 1

How to to run PHP script every hour (how to add php to cron)

Posted: Fri Jan 27, 2023 11:27 am
by myVesta
For example, let's say you want to run php script example.com/pinn/insertDataMain.php every hour.

First check what PHP version you are running.

Screenshot_117.png
Screenshot_117.png (69.81 KiB)

Then go to Add cron:

Screenshot_118.png
Screenshot_118.png (41.82 KiB)

Because we are running PHP 8.0 and our URL is example.com/pinn/insertDataMain.php and let's say we are under test account, our CRON command should look like:

Code: Select all

php8.0 /home/test/web/example.com/public_html/pinn/insertDataMain.php > /home/test/php_cron.log 2>&1
Screenshot_119.png
Screenshot_119.png (46.76 KiB)