CRON Jobs - gogetssl/whmcs-addon GitHub Wiki
The CRON checks SSL status for all "Active" certificates. We suggest to run it is once a day, no need to run more frequently, as active certs never change statuses often.
0 0 * * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/APIDailyStatusUpdater.php
The CRON checks SSL status for all "Processing" certificates. We suggest to run it every 5 minutes.
/5 * * * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/APIProcessingOrders.php
The CRON updates "Client Area Orders Summary". We suggest to run once a day.
1 */4 * * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/certificateStatsLoader.php
The CRON send customers notifications of expiring services and create renewal invoices for services that expire within the selected number of days(once a day suggested):
0 0 * * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/notifier.php
In order to send a certificate to the client when the SSL order changes to active status, set the following command line cron (every 3 hours suggested):
0 3 * * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/certificateSender.php
This CRON checks the status of the certificates, sets the status Terminated if necessary, also checks the expiration date and synchronizes the next due date in WHMCS. Please set up a following CRON command line (every hour suggested):
0 */1 * * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/cron.php
In order to synchronize the WHMCS product prices with the API product prices, set the following command line cron (every 3rd day suggested). If the CRON has been set as above and the "Price auto-download" option has been selected for a given product, the prices for this product will be updated to those from the API within 3 days.
However, prices will be only updated for USD, other currencies are not supported when updating prices. Other currencies must be determined by yourself.
0 0 */3 * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/APIPriceUpdater.php
The CRON requires to update Product settings in the SQL. We suggest running it is once a day.
0 0 * * * php -q /var/www/whmcs/modules/addons/SSLCENTERWHMCS/cron/certificateDetailsUpdater.php