There was a case once a long time ago, when updating WordPress an error occurred and it turned out that the update did not install and the site remained off.
When it was opened, it was displayed:
“Briefly unavailable for scheduled maintenance”.
Category Archives: WordPress
How to enable visual editor in WordPress
It was required to activate a visual editor on one of the WordPress blogs, but did not find the activation function in the settings.
And it turns on individually for each user in the profile settings.
Installing and using WPScan on Linux
WPScan – a utility for testing WordPress, searching for vulnerabilities.
Continue reading “Installing and using WPScan on Linux”WordPress. Solution “cURL error 60: SSL certificate problem: unable to get local issuer certificate”
Once on one of the sites I noticed in WordPress the menu “Tools” – “Site Health” the following errors:
Continue reading “WordPress. Solution “cURL error 60: SSL certificate problem: unable to get local issuer certificate””Email notification when users login to WordPress
Once on several sites, it was necessary to set up sending emails about each user logging into the site.
Continue reading “Email notification when users login to WordPress”Solution of the error “cURL error 28: Operation timed out after N milliseconds”
Once on the WordPress health page (Tools – Website Health) I noticed several errors for the REST API and the Loopback request:
Continue reading “Solution of the error “cURL error 28: Operation timed out after N milliseconds””How to remove date and author from WordPress posts?
There are several ways to disable the display of the date or the author on the recording page.
Before starting any changes, I recommend backing up the data.
Solution of the error when opening wp-admin after the update
I noticed somehow when upgrading WordPress to version 4.7 that after the update wp-admin does not open, instead of the admin window there is an empty window and in the address bar of the browser the following address:
Continue reading “Solution of the error when opening wp-admin after the update”How to hide the Jetpack menu for users
To hide the Jetpack menu for subscribers and regular users, it’s enough to add the following code to the active theme functions.php file:
function ap_remove_jetpack_page( ) { if ( class_exists( 'Jetpack' ) && !current_user_can( 'manage_options' ) ) { remove_menu_page( 'jetpack' ); } } add_action( 'admin_menu', 'ap_remove_jetpack_page', 999 );
Also for this there are several plugins, but those that came across to me are quite old.
Jetpack error solution “Verification secrets not found”
I noticed some error when activating Jetpack:
The Jetpack server encountered the following client error: Verification secrets not found
The reason was found in restricted access over IP through .htaccess to the file wp-login.php, as it turned out that access to this file can not be blocked if Jetpack is used.
That’s why I found lines restricting access and commented them out by putting the # (before each line) symbol (the lines can be in the .htaccess file located in the root directory with WordPress and in the web server configuration files), for example:
# <files wp-login.php> # order allow,deny # allow from 127.0.0.1 192.168.2.50 # </files>
If the lines were in .htaccess, then Jetpack can already be activated, if in the configuration file of the web server, then you still need to restart it to apply the changes.
Also, an error can occur because of conflicting plugins, you can try to turn them off in turn.