Title: wp-cron.php problem
Last modified: May 16, 2019

---

# wp-cron.php problem

 *  [batuhanguldemir](https://wordpress.org/support/users/batuhanguldemir/)
 * (@batuhanguldemir)
 * [7 years ago](https://wordpress.org/support/topic/wp-cron-php-problem/)
 * hello,
    some time ago I got a cron operations error.
 * error log message “[16-May-2019 17:00:09 UTC] PHP Warning: Invalid argument supplied
   for foreach() in /home/******/public_html/sabundanhayaller.com/wp-cron.php on
   line 111”
 * i made all the steps here
    “[https://www.inmotionhosting.com/support/website/wordpress/disabling-the-wp-cronphp-in-wordpress&#8221](https://www.inmotionhosting.com/support/website/wordpress/disabling-the-wp-cronphp-in-wordpress&#8221);
 * still getting the same message.
    what do you think you can do.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fwp-cron-php-problem%2Fpage%2F2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 16 through 30 (of 34 total)

[←](https://wordpress.org/support/topic/wp-cron-php-problem/?output_format=md) [1](https://wordpress.org/support/topic/wp-cron-php-problem/?output_format=md)
2 [3](https://wordpress.org/support/topic/wp-cron-php-problem/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/wp-cron-php-problem/page/3/?output_format=md)

 *  Thread Starter [batuhanguldemir](https://wordpress.org/support/users/batuhanguldemir/)
 * (@batuhanguldemir)
 * [7 years ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11540884)
 * [@autotutorial](https://wordpress.org/support/users/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;
       			}
       		}
       	}
       ```
   
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11541149)
 * 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 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
 *  Thread Starter [batuhanguldemir](https://wordpress.org/support/users/batuhanguldemir/)
 * (@batuhanguldemir)
 * [7 years ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11541288)
 * [@autotutorial](https://wordpress.org/support/users/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.
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11543435)
 * 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 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
 *  [mredodos](https://wordpress.org/support/users/mredodos/)
 * (@mredodos)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11601148)
 * 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)
       ```
   
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11601453)
 * 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
 *  [nanny7](https://wordpress.org/support/users/nanny7/)
 * (@nanny7)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11601872)
 * 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.
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11602807)
 * hello can you offer more information? What version of wordpress do you use, what
   version of php?
    install [health check](https://wordpress.org/plugins/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.
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11605953)
 *     ```
       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. 🙂
 *  [lukeau](https://wordpress.org/support/users/lukeau/)
 * (@lukeau)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11651355)
 * 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
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11653816)
 * Hello [@lukeau](https://wordpress.org/support/users/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?
 *  [hickeymg](https://wordpress.org/support/users/hickeymg/)
 * (@hickeymg)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11667764)
 * 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.
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11668214)
 * 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
 *  [rovemusic](https://wordpress.org/support/users/rovemusic/)
 * (@rovemusic)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11820539)
 * [@hickeymg](https://wordpress.org/support/users/hickeymg/) I have the same problem
   as described. And I did use the installatron, on directadmin. Maybe you can tell
   what the solution was?
 *  [staipa](https://wordpress.org/support/users/staipa/)
 * (@staipa)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/2/#post-11822428)
 * 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)

[←](https://wordpress.org/support/topic/wp-cron-php-problem/?output_format=md) [1](https://wordpress.org/support/topic/wp-cron-php-problem/?output_format=md)
2 [3](https://wordpress.org/support/topic/wp-cron-php-problem/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/wp-cron-php-problem/page/3/?output_format=md)

The topic ‘wp-cron.php problem’ is closed to new replies.

## Tags

 * [cron](https://wordpress.org/support/topic-tag/cron/)
 * [cron job](https://wordpress.org/support/topic-tag/cron-job/)
 * [wp-cron.php](https://wordpress.org/support/topic-tag/wp-cron-php/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 34 replies
 * 12 participants
 * Last reply from: [calderwood](https://wordpress.org/support/users/calderwood/)
 * Last activity: [6 years, 8 months ago](https://wordpress.org/support/topic/wp-cron-php-problem/page/3/#post-11926505)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
