Schedule stops working now and then

WordPress Event Management, Calendars & Registration Forums iCal Extension Schedule stops working now and then

This topic contains 1 reply, has 2 voices, and was last updated by  Stephen Harris 2 years, 6 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #40239

    Hi
    We have a scheduled import that works – most of the times.
    Fetch is set to every 5 min, but now and then it simply stops running my script for several days.
    Can I somehow see a log file or simular that will help me figuring out why the schedule simply stops?
    Any ideas?
    Screenshot

    Christian Nybroe
    #40250

    Hi Christian,

    The scheduling of events is all handled by WordPress.

    By default WordPress uses a psuedo-cron which means its not particularly accurate (especially if you have very few visitors). I would have expected that once you logged-into the site it should have triggered.

    You could try adding some logging:

    add_action( 'eventorganiser_ical_feed_sync', function(){
       error_log("ical sync cron callback called");
    }, 5 );
    

    Try that with WP_DEBUG and WP_DEUB_LOG set to true.

    Stephen Harris
Viewing 2 posts - 1 through 2 (of 2 total)
To enable me to focus on Pro customers, only users who have a valid license for the Pro add-on may post new topics or replies in this forum. If you have a valid license, please log-in or register an account using the e-mail address you purchased the license with. If you don't you can purchase one here. Or there's always the WordPress repository forum.