*

Oles

  • **
  • 5 posts
Add task cron
« on: February 03, 2024, 08:29:04 PM »
Hello.
I need help setting up cron on the server.
The following examples are written in the documentation:
0 * * * * usr/local/php5/bin/php /home/your_username/public_html/index.php -p cron -t hourly
0 0 * * * usr/local/php5/bin/php /home/your_username/public_html/index.php -p cron -t daily
0 0 * * 0 usr/local/php5/bin/php /home/your_username/public_html/index.php -p cron -t weekly

I have this form on my server for adding a cron job (I added an image)
What should I write in Task* what address? I tried different variations, but nothing happens.

*

kriskoyk

  • *****
  • 302 posts
Re: Add task cron
« Reply #1 on: February 05, 2024, 11:45:30 AM »
I have this and it works great.

0   *   *   *   *   wget your domain/index.php?page=cron -O /dev/null

*

Oles

  • **
  • 5 posts
Re: Add task cron
« Reply #2 on: February 05, 2024, 06:33:09 PM »
I have this and it works great.

0   *   *   *   *   wget your domain/index.php?page=cron -O /dev/null

Thank you, very much! it is work.