Kelly
Kelly

Reputation: 41

Cron configuration

How to set cron to clean drupal cache every 2 days?

Upvotes: 4

Views: 317

Answers (2)

Tilo
Tilo

Reputation: 33752

to set up a crontab entry for this to run every 2 days, only once a day at 01:00am : (Using step values in conjunction with ranges in crontab)

0 1 1-31/2 * * wget -O - -q -t 1 http://yoursite.com/cron.php

See:

man 5 crontab

http://drupal.org/node/23714

Upvotes: 0

Kevin
Kevin

Reputation: 13226

You have to set this in your server, not from Drupal.

Cron example:

minute hour day month day-of-week command-line-to-execute

0 * * * "MON,WED,FRI" wget -O - -q -t 1 http://www.example.com/cron.php

http://drupal.org/cron

http://en.wikipedia.org/wiki/CRON_expression

Upvotes: 2

Related Questions