Overcoming Bug wordpress 2.9 – that eror message “Missed schedule “

Posted on May 1st, 2010 in Web Programming

WordPress has recently released the newest version of WordPress 2.9 which is bundled with many new features. But this time the error occurred in the post scheduling dashboard page. While you will schedule a good article post date / time, this will be scheduled to complete and shows the status of “Scheduled”. But the post will not be published (published) at the time and status message will change to ‘Missed schedule’.

Wordpress 2.9 bug is due to slow response from the system at the scheduled time. Actually this problem already exists in previous versions of WordPress, but this time is to resolve errors more frequently. Since Wordpress 2.9 was released and bundled with more features, the system load increases and therefore we deal with this problem often in the wordpress version 2.9.

Here is the solution to this problem.

Before the change

PHP:

  1. wp_remote_post( $cron_url, array(‘timeout’ => 0.01, ‘blocking’ => false, ’sslverify’ => apply_filters(‘https_local_ssl_verify’, true)) );
After changes
PHP:

  1. wp_remote_post( $cron_url, array(‘timeout’ => 10.00, ‘blocking’ => false, ’sslverify’ => apply_filters(‘https_local_ssl_verify’, true)) );
access amp article browser Click code com company content course design end Engine error example file function Home html information Internet line Link market message method name online page php process Search service site sitemap System Text time title type Use way Web Website world

Comments are closed.