Difference between revisions of "Cron Configuration"
From WHMCS Documentation
(New page: =Setting Up Cron Jobs= We recommend you run the cron once per day to avoid your customers receiving duplicate emails for overdue notices etc. The following information will aid you in set...) |
m (→Setting Up Cron Jobs) |
||
Line 52: | Line 52: | ||
| get <nowiki>http://www.yourdomain.com/whmcspath/adminpath/cron.php</nowiki> | | get <nowiki>http://www.yourdomain.com/whmcspath/adminpath/cron.php</nowiki> | ||
|} | |} | ||
+ | |||
+ | ==Direct Admin== | ||
+ | |||
+ | ==Windows Server== | ||
+ | |||
+ | ==DotNetPanel== | ||
+ | |||
+ | ==Plesk== | ||
+ | |||
+ | ==LXAdmin== | ||
+ | |||
+ | ==Helm== | ||
+ | |||
+ | ==Ensim== | ||
+ | |||
+ | ==InterWorx== | ||
+ | |||
+ | ==HyperVM== | ||
+ | |||
+ | ==TCAdmin== |
Revision as of 14:03, 21 August 2008
Contents
Setting Up Cron Jobs
We recommend you run the cron once per day to avoid your customers receiving duplicate emails for overdue notices etc. The following information will aid you in setting up your Admin cron (invoice generation etc) on different Control Panels and environments.
The examples below will setup the cron to run at 9am every day.
cPanel
Click on the Cron Job link in cPanel and then click the Advanced (Unix Style) button.
Option | Minute | Hour | Day | Month | Weekday | Command | ||
---|---|---|---|---|---|---|---|---|
a) | 0 | 9 | * | * | * | php -q /path/to/home/public_html/whmcspath/adminpath/cron.php | ||
b) | 0 | 9 | * | * | * | wget -O http://www.yourdomain.com/whmcspath/adminpath/cron.php >/dev/null | ||
c) | 0 | 9 | * | * | * | get http://www.yourdomain.com/whmcspath/adminpath/cron.php |