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!
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.
Thank you.
An idea how I could do that in the context? Simply put static pages in addition or how?
Either you put the contents directly on the maintenance page, or as a static page, yes.
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.
When WordPress is down, however, users get a message that the site is being maintained – the question is more how I could exchange it.
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)
It probably doesn’t make wordpress but your web server. Which webserver do you use?
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.
Oh, that’s what it says.
“Down” in the sense that the website is not accessible, not in the sense that the website is really “dead”.
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
So your alternative is nothing?
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