Reputation: 41
How to set cron to clean drupal cache every 2 days?
Upvotes: 4
Views: 317
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
Upvotes: 0
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://en.wikipedia.org/wiki/CRON_expression
Upvotes: 2