I have WordPress 3.5.1 and I use Bluehost hosting service. When I schedule posts after that time passed, WP posts dashboard shows “Missed schedule” message under the date. Then I checked my wp-config.php
has define('DISABLE_WP_CRON', true);
there’s no such a define line. Then I added define('DISABLE_WP_CRON', false);
under the database lines. After that I added following code to my .htaccess
file.
<Files "wp-cron.php">
Allow from All
Satisfy Any
</Files>
But still this issue not fixed. What is the reason? Is it my hosting company issue or my WP issue? How do i fix it?