How to to run PHP script every hour (how to add php to cron)
Posted: Fri Jan 27, 2023 11:27 am
For example, let's say you want to run php script wp3.deb12.dev/pinn/insertDataMain.php every hour.
First, check what PHP version you are running.
PHP-FPM-80 means that PHP version is 8.0
Now, let's add a cron:
Because we are running PHP 8.0 and our URL is wp3.deb12.dev/pinn/insertDataMain.php, and let's say we are under the test account, our CRON command should look like:
First, check what PHP version you are running.
PHP-FPM-80 means that PHP version is 8.0
Now, let's add a cron:
Because we are running PHP 8.0 and our URL is wp3.deb12.dev/pinn/insertDataMain.php, and let's say we are under the test account, our CRON command should look like:
Code: Select all
php8.0 /home/test/web/wp3.deb12.dev/public_html/pinn/insertDataMain.php > /home/test/php_cron.log 2>&1