Viewing 15 replies - 16 through 30 (of 34 total)
  • Thread Starter batuhanguldemir

    (@batuhanguldemir)

    @autotutorial
    If you remove these codes from the page(wp-cron.php), is there any problem or security vulnerability?

    	foreach ( $cronhooks as $hook => $keys ) {
    
    		foreach ( $keys as $k => $v ) {
    
    			$schedule = $v['schedule'];
    
    			if ( $schedule != true ) {
    				$new_args = array( $timestamp, $schedule, $hook, $v['args'] );
    				call_user_func_array( 'wp_reschedule_event', $new_args );
    			}
    
    			wp_unschedule_event( $timestamp, $hook, $v['args'] );
    
    			/**
    			 * Fires scheduled events.
    			 *
    			 * @ignore
    			 * @since 2.1.0
    			 *
    			 * @param string $hook Name of the hook that was scheduled to be fired.
    			 * @param array  $args The arguments to be passed to the hook.
    			 */
    			do_action_ref_array( $hook, $v['args'] );
    
    			// If the hook ran too long and another cron process stole the lock, quit.
    			if ( _get_cron_lock() != $doing_wp_cron ) {
    				return;
    			}
    		}
    	}

    before applying a change, back up your files and database

    if(!is_array($cronhooks)){
    if(!is_object($cronhooks)){
    if(is_null($cronhooks)){
    $cronhooks = (int) $cronhooks;
    }
    error_log(print_r($cronhooks, TRUE)."\n");
    break;
    }
    }

    You don’t have to hide the problem but solve it.
    I can’t tell you if you have security problems, I’m sorry.
    I added the script termination try it to let us know

    • This reply was modified 5 years, 6 months ago by autotutorial.
    Thread Starter batuhanguldemir

    (@batuhanguldemir)

    @autotutorial
    thank you for the answer.
    I did as you said.

    [17-May-2019 04:02:23 UTC] 
    
    [17-May-2019 04:02:24 UTC] 
    
    [17-May-2019 04:02:32 UTC] 
    
    [17-May-2019 04:02:34 UTC] 
    
    [17-May-2019 04:03:30 UTC] 
    
    [17-May-2019 04:05:29 UTC] 

    in this way an error log printed.

    if you have not already backed up files and databases, make backups.
    Is almost caught, I hope to catch up with the error now.

    if(!is_array($cronhooks)){
    if(!is_object($cronhooks)){
    function var_x_error_log( $objectauto=null ){
    
        ob_start();                    // start buffer capture
    
        var_dump(  $objectauto );           // dump the values
    
        $contentsauto = ob_get_contents(); // put the buffer into a variable
    
        ob_end_clean();                // end capture
    
        error_log( $contentsauto );        // log contents of the result of var_dump( $objectauto )
    return $contentsauto;
    }
    var_x_error_log( $cronhooks );
    break;
    }
    }
    • This reply was modified 5 years, 6 months ago by autotutorial.
    • This reply was modified 5 years, 6 months ago by autotutorial.

    i have same problem and i try with the code provided from autotutorial, this is the result

    [03-Jun-2019 19:36:40 UTC] bool(false)
    
    [03-Jun-2019 19:36:49 UTC] bool(false)
    
    [03-Jun-2019 19:36:51 UTC] bool(false)
    
    [03-Jun-2019 19:36:55 UTC] bool(false)
    
    [03-Jun-2019 19:37:04 UTC] bool(false)
    
    [03-Jun-2019 19:37:07 UTC] bool(false)
    
    [03-Jun-2019 19:37:14 UTC] bool(false)

    Hi I’m sorry that you encounter errors, try enabling
    define( 'ALTERNATE_WP_CRON', true );
    in your wp-config.php file (create a backup of this file) and write the code before the require_once at the bottom of the page.
    The error may be due to a theme or plugin conflict or the plugin does not call or write the object correctly.
    Can you put a log in the foreach before $cronehooks? obviously you also need to change the variable as the first argument of the foreach $crons
    You will need to filter for the time limit expressed in the function on the foreach $cronhooks (error_log) to understand a faulty $crons.

    function var2_x_error_log( $objectauto2=null ){
    
        ob_start();                    // start buffer capture
    
        var_dump(  $objectauto2 );           // dump the values
    
        $contentsauto2 = ob_get_contents(); // put the buffer into a variable
    
        ob_end_clean();                // end capture
    
        error_log( $contentsauto2,3,'/absolutepath/' );        // log contents of the result of var_dump( $objectauto )
    return $contentsauto;
    }
    var2_x_error_log( $crons );

    absolutepath for example /home/user/public_html/log/debug.log

    I also am having issues I disabled all plugins and used WordPress core theme but still keep getting them every time you visit the website. So it isn’t a plugin or theme.

    hello can you offer more information? What version of wordpress do you use, what version of php?
    install health check to diagnose your site.

    Have you come to create the second log as requested? I think I manually add the time limit let me know so I make the change it.

    if(!is_array($cronhooks)){
    function var_x_error_log( $objectauto=null,$cronsauto=null ){
    ob_start(); // start buffer capture
    var_dump( $objectauto,$cronsauto ); // dump the value
    $contentsauto = ob_get_contents(); // put the buffer into a variable
    ob_end_clean(); // end capture
    error_log( $contentsauto."\n",3,dirname(__FILE__).'/test.log'); // log contents of the result of var_dump( $objectauto,$cronsauto )
    return $contentsauto;
    }
    var_x_error_log( $cronhooks,$crons );
    break;
    }

    This shows the error in detail, the first array is $cronhooks (in your case bool false) all the other $crons. ??

    I’ve got the same problem. I have followed the guide here by autotutorial

    I got this:
    bool(false)
    array(5) {
    [0]=>
    bool(false)
    [1560913633]=>
    array(1) {
    [“action_scheduler_run_queue”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(12) “every_minute”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(60)
    }
    }
    }
    [1560913643]=>
    array(1) {
    [“litespeed_imgoptm_trigger”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “litespeed_filter”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(60)
    }
    }
    }
    [1560914100]=>
    array(1) {
    [“mc4wp_refresh_mailchimp_lists”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(5) “daily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(86400)
    }
    }
    }
    [1560914156]=>
    array(1) {
    [“wplister_update_auctions”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(11) “fifteen_min”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    }

    bool(false)
    array(5) {
    [0]=>
    bool(false)
    [1560913633]=>
    array(1) {
    [“action_scheduler_run_queue”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(12) “every_minute”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(60)
    }
    }
    }
    [1560913643]=>
    array(1) {
    [“litespeed_imgoptm_trigger”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “litespeed_filter”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(60)
    }
    }
    }
    [1560914100]=>
    array(1) {
    [“mc4wp_refresh_mailchimp_lists”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(5) “daily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(86400)
    }
    }
    }
    [1560914156]=>
    array(1) {
    [“wplister_update_auctions”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(11) “fifteen_min”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    }

    I have updated my theme, plugins etc.. but error still being recorded.

    error i was originally getting was:

    PHP Warning: Invalid argument supplied for foreach() in /public_html/wp-cron.php on line 111

    Hello @lukeau , the problem is that $ crons is created with the first parameter as a boolean value.
    I’m sure the text won’t be investigative.
    This error, theme, plugin or core WordPress :/
    obviously the cron is retrieved from the database, maybe that fake means not to run any cron? Currently I can’t answer.

    Create your back-up of file ftp and back-up database, do you want to try changing the variable without false?

    Hello batuhanguldemir,

    Do you know if you used Installatron to install WP on your server? I have been having the same issue on new installs of that used Installatron for the initial setup. If so please let me konw and I will send over the fix we used. I don’t want to clog up the forum with a fix that won’t work for you if you did’t use Installatron as that was the root of our problem.

    technically if that fake bool is meaningless and is paired with the timestamp it can simply change the break with continue.
    This will only execute the cronhooks valid foreach (array) but does not create or modify the cron object in the database

    @hickeymg I have the same problem as described. And I did use the installatron, on directadmin. Maybe you can tell what the solution was?

    I have same probem and log is

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

    bool(false)
    array(11) {
    [0]=>
    bool(false)
    [1565549097]=>
    array(2) {
    [“w3_pgcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_pgcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    [“w3_pgcache_prime”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(16) “w3_pgcache_prime”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(900)
    }
    }
    }
    [1565549139]=>
    array(1) {
    [“nxs_querypost_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(8) “nxsquery”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    string(3) “120”
    }
    }
    }
    [1565549162]=>
    array(2) {
    [“jetpack_sync_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    [“jetpack_sync_full_cron”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(21) “jetpack_sync_interval”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(300)
    }
    }
    }
    [1565549212]=>
    array(1) {
    [“nxs_hourly_event”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565549980]=>
    array(1) {
    [“jetpack_clean_nonces”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552058]=>
    array(1) {
    [“wp_privacy_delete_old_export_files”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(6) “hourly”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552078]=>
    array(1) {
    [“w3_dbcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(18) “w3_dbcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565552228]=>
    array(1) {
    [“w3_objectcache_cleanup”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(22) “w3_objectcache_cleanup”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(3600)
    }
    }
    }
    [1565553583]=>
    array(1) {
    [“ao_cachechecker”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(3) {
    [“schedule”]=>
    string(10) “twicedaily”
    [“args”]=>
    array(0) {
    }
    [“interval”]=>
    int(43200)
    }
    }
    }
    [1565557725]=>
    array(1) {
    [“nxs_chAPIU”]=>
    array(1) {
    [“40cd750bba9870f18aada2478b24840a”]=>
    array(2) {
    [“schedule”]=>
    bool(false)
    [“args”]=>
    array(0) {
    }
    }
    }
    }
    }

Viewing 15 replies - 16 through 30 (of 34 total)
  • The topic ‘wp-cron.php problem’ is closed to new replies.