• I have seen my server IP address hitting itself, so that I goes to admin panel and install WP Crontrol plugin to check cron job list.I found many cron job running on wordpress.

    List of cron job are:
    action_scheduler_run_queue, blc_cron_check_links, dare_hourly_event, ai1ec_cron, wc_admin_process_orders_milestone, wp_privacy_delete_old_export_files, woocommerce_scheduled_sales,backupbuddy_cron, wp_version_check, wp_update_plugins, wp_update_themes, wp_scheduled_delete, wp_scheduled_auto_draft_delete,woocommerce_cleanup_personal_data, woocommerce_tracker_send_event, woocommerce_cleanup_logs, woocommerce_cleanup_sessions, backupbuddy_cron, wc_admin_daily, et_builder_fonts_cron, recovery_mode_clean_expired_keys, edd_weekly_scheduled_events, edd_daily_scheduled_events, tribe_common_log_cleanup, delete_expired_transients, redirection_log_delete, blc_cron_email_notifications, blc_cron_database_maintenance, woocommerce_geoip_updater, backupbuddy_cron, et_core_page_resource_auto_clear.

    what are the cron job can deleted for better performance ?

    • This topic was modified 5 years, 3 months ago by chandan115.
Viewing 6 replies - 1 through 6 (of 6 total)
  • You can disable WordPress cron for better performance, in wp-config.php add this:

    /** Disable cron  */
    define( 'DISABLE_WP_CRON', true );

    Hi @chandan115

    Completely disabling cron can hinder some vital plugin functions, so keep that in mind if certain plugins stop working if you do decide to completely disable it. I know, for example, backupbuddy which I see listed in your post. It has an internal cron system that you can turn on and use in the event that you do need to disable cron and still need to make backups. Hope this helps!

    v/r
    Yobani

    Thread Starter chandan115

    (@chandan115)

    Thank you @wpfed for your response.
    I don’t want to disable all cron-job.
    I require to disable the cron-job which is not necessary for our website.
    Could you please help me to find unnecessary cron-job which can be disabled.

    Thread Starter chandan115

    (@chandan115)

    Thank you @yobani for your response.

    I don’t want to completely disable cron as it hinder the system.
    Could you please help me to find unnecessary cron-job which can be disabled for better performance.

    @chandan115 It’s very common to disable wp-cron.php, since it gets hit every single page load, this can impact performance.

    What I do is disable wp-cron.php and then I got my hosting company to do a real cron job from the SERVER, the cron job hits wp-cron.php, in my case only once a day at midnight, I don’t need it any more often. You can schedule it every 6 hours, 15 minutes, etc, whatever you feel you need, performance will be much better then it being hit every page load.

    Trying to find a way to disable a cron job for every single plugin individually will be too much effort and most likely not possible.

    Here is a article describing how to do this:
    https://kinsta.com/knowledgebase/disable-wp-cron/

    Thread Starter chandan115

    (@chandan115)

    Thank you @wpfed for your time.

    Actually I am using custom con-job in hourly basis.
    If I disabled the wp-cron.php than it will affect my custom cron-job.

    So we require to identify unnecessary cron-job and disable it. Please help me to identify the unnecessary cron(list is given on post).

    Thank you
    chandan

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Can I remove Cron-job’ is closed to new replies.