Review of your current cron jobs and recommendations
Here's an analysis of your current cron job configuration:
| Minute | Hour | Day | Month | Weekday | Command | Frequency |
|---|---|---|---|---|---|---|
| */15 | * | * | * | * | /usr/local/bin/php /home1/aurrukwj/public_html/wp-cron.php | Every 15 minutes |
| 5 | 2 | * | * | * | /usr/local/bin/php /home1/aurrukwj/public_html/wp-content/plugins/litespeed-cache/cli/purge.cls.php purge_all | Daily at 2:05 AM |
| 0 | */6 | * | * | * | /usr/local/bin/php /home1/aurrukwj/public_html/wp-content/plugins/litespeed-cache/cli/purge.cls.php gc | Every 6 hours |
| 0 | 3 | * | * | 0 | /usr/local/bin/php /home1/aurrukwj/public_html/wp-content/plugins/wp-cli/bin/wp db optimize --quiet | Weekly on Sunday at 3:00 AM |
| */30 | 6-22 | * | * | * | curl -s -H "X-LSCACHE: on" https://jazila-traders.com/ | Every 30 minutes from 6 AM to 10 PM |
Your WordPress cron is set to run every 15 minutes, which might be interfering with your news ticker settings.
The curl command to your homepage is running every 30 minutes during waking hours, which might be affecting performance measurements.
WordPress has its own internal cron system that works based on site visits. When you set up a server cron job for wp-cron.php, you're essentially triggering WordPress to run its scheduled tasks every 15 minutes.
If your news ticker plugin relies on WordPress cron, it might be executing more frequently than intended.
Add this to your wp-config.php file to disable the internal WordPress cron:
This will prevent WordPress from running cron on page visits and rely solely on your server cron.
Change your WordPress cron job to run at your desired interval (e.g., every 4 hours):
Some plugins have their own cron settings. Check your news ticker plugin settings to ensure it's not configured to run more frequently.
After making these changes, your cron jobs should work together harmoniously:
After making these changes, monitor your site's performance to ensure everything works correctly.
If your news ticker plugin has its own cron system, you might need to:
Since you're using LiteSpeed Cache, ensure that your news ticker content is either:
If you're still experiencing issues after making these changes, please: