Maintenance mode is designed for working with CMS files.
To prevent users from seeing errors when updating or editing files, you must enable maintenance mode.
When accessing the site, users will be redirected to the maintenance page.
How to enable maintenance mode
To enable maintenance mode, open the rk-config.php file in any editor. The rk-config.php file is located in the root directory.
Replace the line:
define('RK_MAINTENANCE_MODE', false);
with
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 replace the line:
define('RK_MAINTENANCE_MODE', true);
on
define('RK_MAINTENANCE_MODE', false);