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;
|
|
|
|
|
2006-11-21 03:48:12 +01:00
|
|
|
if ( get_option('doing_cron') > time() )
|
|
|
|
exit;
|
|
|
|
|
|
|
|
update_option('doing_cron', time() + 30);
|
|
|
|
|
2006-09-14 01:54:15 +02:00
|
|
|
$crons = _get_cron_array();
|
2006-08-07 05:50:55 +02:00
|
|
|
$keys = array_keys($crons);
|
|
|
|
if (!is_array($crons) || $keys[0] > time())
|
2006-03-07 22:43:59 +01:00
|
|
|
return;
|
2008-05-25 17:50:15 +02:00
|
|
|
|
2006-03-07 22:43:59 +01:00
|
|
|
foreach ($crons as $timestamp => $cronhooks) {
|
|
|
|
if ($timestamp > time()) break;
|
2006-09-14 01:54:15 +02:00
|
|
|
foreach ($cronhooks as $hook => $keys) {
|
|
|
|
foreach ($keys as $key => $args) {
|
|
|
|
$schedule = $args['schedule'];
|
|
|
|
if ($schedule != false) {
|
2006-10-08 19:50:21 +02:00
|
|
|
$new_args = array($timestamp, $schedule, $hook, $args['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
|
|
|
}
|
2006-09-14 02:18:05 +02:00
|
|
|
wp_unschedule_event($timestamp, $hook, $args['args']);
|
2006-11-21 03:48:12 +01:00
|
|
|
do_action_ref_array($hook, $args['args']);
|
2006-03-07 22:43:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-21 03:48:12 +01:00
|
|
|
|
|
|
|
update_option('doing_cron', 0);
|
|
|
|
|
2008-05-25 17:50:15 +02:00
|
|
|
?>
|