2006-03-07 22:43:59 +01:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
|
|
|
* WordPress Cron Implementation for hosts, which do not offer CRON or for which
|
|
|
|
* the user has not setup a CRON job pointing to this file.
|
|
|
|
*
|
|
|
|
* The HTTP request to this file will not slow down the visitor who happens to
|
|
|
|
* visit when the cron job is needed to run.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2006-03-07 22:43:59 +01:00
|
|
|
ignore_user_abort(true);
|
2008-05-25 17:50:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tell WordPress we are doing the CRON task.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
define('DOING_CRON', true);
|
|
|
|
/** Setup WordPress environment */
|
2008-05-21 07:59:27 +02:00
|
|
|
require_once('./wp-load.php');
|
2006-03-07 22:43:59 +01:00
|
|
|
|
2007-04-16 22:47:23 +02:00
|
|
|
if ( $_GET['check'] != wp_hash('187425') )
|
2006-03-08 06:51:42 +01:00
|
|
|
exit;
|
|
|
|
|
2008-09-18 09:09:38 +02:00
|
|
|
$local_time = time();
|
2006-11-21 03:48:12 +01:00
|
|
|
|
2006-09-14 01:54:15 +02:00
|
|
|
$crons = _get_cron_array();
|
2008-09-18 09:09:38 +02:00
|
|
|
$keys = array_keys( $crons );
|
|
|
|
|
|
|
|
if (!is_array($crons) || $keys[0] > $local_time) {
|
|
|
|
update_option('doing_cron', 0);
|
2006-03-07 22:43:59 +01:00
|
|
|
return;
|
2008-09-18 09:09:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($crons as $timestamp => $cronhooks) {
|
|
|
|
|
|
|
|
if ( $timestamp > $local_time )
|
|
|
|
break;
|
2008-05-25 17:50:15 +02:00
|
|
|
|
2006-09-14 01:54:15 +02:00
|
|
|
foreach ($cronhooks as $hook => $keys) {
|
2008-09-18 09:09:38 +02:00
|
|
|
|
|
|
|
foreach ($keys as $k => $v) {
|
|
|
|
|
|
|
|
$schedule = $v['schedule'];
|
|
|
|
|
2006-09-14 01:54:15 +02:00
|
|
|
if ($schedule != false) {
|
2008-09-18 09:09:38 +02:00
|
|
|
$new_args = array($timestamp, $schedule, $hook, $v['args']);
|
2006-09-14 02:18:05 +02:00
|
|
|
call_user_func_array('wp_reschedule_event', $new_args);
|
2006-09-14 01:54:15 +02:00
|
|
|
}
|
2008-09-18 09:09:38 +02:00
|
|
|
|
|
|
|
wp_unschedule_event($timestamp, $hook, $v['args']);
|
|
|
|
|
|
|
|
do_action_ref_array($hook, $v['args']);
|
2006-03-07 22:43:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-21 03:48:12 +01:00
|
|
|
|
|
|
|
update_option('doing_cron', 0);
|
|
|
|
|
2008-09-18 09:09:38 +02:00
|
|
|
die();
|
|
|
|
|
|
|
|
?>
|