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

For the WordPress-based websites, you might have come across this message.

image.png

  • Check for "wp-activate.php" in the domain's folder. If it is present, search for the function "WP_INSTALLING" and check whether it is enabled or not.
sudo cat /home/kyrgyz1/public_html/wp-activate.php | grep "WP_INSTALLING"
define( 'WP_INSTALLING', true );
  • If enabled, then disable it by editing the "wp-activate.php" file. {true → false}
define( 'WP_INSTALLING', false );

Reload the website now.