Cron Job: Basics & Checklist

FluentCRM is a plugin that works continuously in the background to complete and process the tasks that are scheduled every minute like any other Email Marketing Application.

Cron jobs are important because they allow for the automated execution of scripts and programs at specified intervals. This can be useful for tasks such as scheduling backups, sending notifications, or updating data. Cron jobs can also help to automate repetitive tasks and improve the efficiency of a system by removing the need for manual intervention.

In this article, we will be checking in with the Primary Requirement of WordPress Cron Job Handover to either Server-side or Alternative Methods.

FluentCRM Cron Status #

FluentCRM has a few scheduled events and jobs that run frequently at various intervals. The regular and healthy cron status can be found under FluentCRM Settings ⮕ Tools ⮕ Cron Job Status

crm cron status

Disable Default WordPress Cron System #

Before we proceed, we will need to confirm that the default PHP-based scheduled job running is disabled from the WordPress Configuration File (wp-config.php).

To do this please open the wp-config.php file and look for the section below:

/* Add any custom values between this line and the "stop editing" line. */


/* That's all, stop editing! Happy publishing. */

We need to add a new Configuration Directive for Server-Side invocation within these two lines which is below:

define('DISABLE_WP_CRON', 'true'); // Disable Default WordPress Cron System

Now the code will look similar as below:

/* Add any custom values between this line and the "stop editing" line. */

define('DISABLE_WP_CRON', 'true');    // Disable the default PHP-based Cron invocation.

/* That's all, stop editing! Happy publishing. */