Maintenance mode is designed to work with sсript files.
To ensure that users do not see errors at the time of updating or editing, it is necessary to enable the maintenance mode.
When accessing the site, users will be redirected to the maintenance page.
How to enable maintenance mode
To enable maintenance mode, you need to open the rk-config.php file in any editor. The rk-config.php file is located in the root directory.
You need to rеplace the line:
define('RK_MAINTENANCE_MODE', false);
on
define('RK_MAINTENANCE_MODE', true);
How to disable maintenance mode
To disable maintenance mode, open the rk-config.php file in any editor. The rk-config.php file is located in the root directory.
You need to rеplace the line:
define('RK_MAINTENANCE_MODE', true);
on
define('RK_MAINTENANCE_MODE', false);