Fix the ‘Scheduled Maintenance’ Error on WordPress

One of the most annoying error in WordPress is the ‘Scheduled Maintenance’ message a Webmaster gets after an automatic upgrade has completed.

This problem is mainly caused by a failed automatic upgrade or an interrupted update process.  So each time a visitor tries to visit your home page, he/she will get the following message:

Briefly unavailable for scheduled maintenance. Check back in a minute.

In fact, each time WordPress is automatically updating its core files, themes or plugins, the blog will be  marked as ‘under maintenance’.
To fix this problem :  remove .maintenance (hidden) file, located  in your blog root directory and the site will come back.

maintenance

 

You may want to run the WordPress automatic upgrade again after resolving this problem.

You May Also Like

Affect an image to categories in WordPress without plugin

This tutorial allows you to add a text field to fill the URL of an image for each of your categories. Add this in your functions.php file: [sourcecode language=”php”]add_action(‘init’, ‘my_category_module’);[/sourcecode] [sourcecode language=”php”]function my_category_module() { add_action ( ‘edit_category_form_fields’, ‘add_image_cat’); add_action ( ‘edited_category’, ‘save_image’); }[/sourcecode] The function to add the extra field : [sourcecode language=”php”]function add_image_cat($tag){ $category_images = get_option( ‘category_images’ ); $category_image = ”; if ( is_array( $category_images ) && array_key_exists( $tag->term_id, $category_images […]

WordPress Hack: remove “WordPress Generator”

The publishing platform WordPress adds a small line for itself to advertise and clarify that the site that you find is a site using WordPress. Except that in addition to reporting that it’s WordPress, it goes to show the current version.It is not embarrassing, except that each version has its security problems… Past one of […]

How to Manually Migrate a WordPress Site from ScalaHosting to WordPress.com

There is a point in every self-hosted WordPress journey when managing the…

What’s New In WordPress 4.3

  WordPress is the most widely used content management system in the world. It is an excellent platform for beginners to launch their blog without needing expert knowledge on HTML. WordPress is also useful for sole proprietors who want their business to have an online presence but at the same time do not want to […]