The importance of configuring a Cron Job for a WordPress Website is to ensure that the scheduled jobs run timely and successfully and do not fail the scheduled jobs or events and everything works in order. This includes running FluentCRM Email Processing, Sending, Running Automation, Email Sequences, and other processing tasks.
Prechecks #
Before we begin, please make sure that you have read about the Cron Job: Basics & Checklist and event recurrences of FluentCRM and also followed Disable Default WordPress Cron System with the code 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. */
Cron Jobs or Scheduled Jobs can be run or invoked locally and remotely. In this article, we will learn about the recommended and most effective method for configuring a cron job for a WordPress Website. We also have a few articles focused on running cron jobs remotely:
Configure WordPress Cron Job from cPanel #
One of the most used and popular Web Hosting Control Panels is cPanel and we will be evaluating it in this article.
Cron Settings #
Now please go to the Cron Jobs option as shown below:

This will offer some input fields to set the Cron Intervals and the Cron Command as below:

Most of cases, the suitable recommended time interval for running the Cron job is per minute. Putting a Star(*) means EVERY. Here all 5 stars mean Every Minute on Every Hour on Every Day on Every Month on Every Weekday.
The command for running WordPress is:
wget -q -O - https://ibrahimsharif.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1
And the total command including time intervals which is the resulting final output is:
* * * * * wget -q -O - https://ibrahimsharif.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1
Please use your own Website as guided here.
Compare Cron Status #
When the cron configuration is completed we should check back after one or more hours from the FluentCRM Settings > Tools and compare our results against the below screenshot which is a normal FluentCRM Cron Status running 3 events on 1 Minute, 5 Minutes, and 1 Hour Intervals.

That’s all for cPanel WordPress Cron Configuration! Thanks and enjoy working with WordPress Scheduled Events.