WordPress – Maintenance Mode Plugin?

Good morning,

For example, if I update my plugins, the website is temporarily down. Is there a plugin I can use to update this page? For example, some kind of static page?

I don't want to have to manually activate a maintenance plugin every time, but rather have the page come up automatically when there are updates.

Thanks and best regards!

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
13 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
IrockRTC
1 year ago

You can change the content of the maintenance page via function.php:

function maintenancepage() {

if ( !current_user_can( ‘edit_themes’ ) || !is_user_logged_in() ) {

:

// and here is an HTML. Texts, pictures, links etc. And you can format it with CSS

This website is currently being acoustised

Please check again in a few minutes!

‘,’maintenance mode’;

}}

add_action(‘get_header’, ‘maintenancepage’);

If you have a commercial website, the maintenance page must be adjusted in this way or so. There is a court ruling that imprint and data protection must also be accessible in maintenance mode.

IrockRTC
1 year ago

Either you put the contents directly on the maintenance page, or as a static page, yes.

jort93
1 year ago

This is not technically possible.

If your wordpress is down, then the wordpress plugins do not work.

If you want to do this, you could, for example, set up a reverse proxy that the user if wordpress down is, forward to another page. As reverse proxy I like to use nginx, but you can also use apache.

jort93
1 year ago

https://www.hongkiat.com/blog/wordpress-maintenance/

Here you can create a “maintenance.php” file in wp content (and reverse proxy in apache is also briefly explained)

jort93
1 year ago

It probably doesn’t make wordpress but your web server. Which webserver do you use?

IrockRTC
1 year ago
Reply to  jort93

WordPress is not “down” when the components are updated. It is only maintenance mode and WordPress displays the standard maintenance page, which can be personalized both with and without plugin.

jort93
1 year ago
Reply to  IrockRTC

Oh, that’s what it says.

NackterGerd
1 year ago

More plugins?

I would always do without unnecessary plugins.

First, WordPress is getting slower and worse in search engines ranking

PlugIns can also always be used as a backdoor for attacks.

Or data could be tapped

So always is safety risk

NackterGerd
1 year ago

You can create a normal HTML website.

Upload this in a maintenance directory Inc CSS

And then redirect the URL for maintenance

I would not have liked