Cron command runs a PHP script every 10 minutes

In my hosting I have a section for cron to work, like this:

alt text http://www.site-helper.com/gs99.gif

The PHP script is called "croned.php", which I want it to run every 10 minutes.

What will I fill in each field?

I tried, but it did not work.

Note. Full path to the script: /home/axelzd/domains/hellodom.com/public_html/croned.php

+3
source share
3 answers

, / cron .. - 0,10,20,30,40,50 ( , - , Plesk) * , , - /usr/bin/wget -q -t 5 --delete-after URL_TO_YOUR_CRON php PATH_TO_YOUR_PHP_FILE_ON_THE_SERVER

+2

*/10 , * .

+8

try it

*/10 * * * * <command_to_be_invoked>
+1
source

Source: https://habr.com/ru/post/1728128/


All Articles