getMessage(); } } elseif($_GET['go'] == 'finish'){ try{ if(isset($_SESSION['installer']['finished'])){ // Load config $configValues = include_once 'config/config.php'; if(!is_array($configValues)){ throw new Exception('Error writing the config, please manually write the config to "'.$configPath.'".'); } // Init system Config::init($configValues); Database::init(Config::get('mysql')); Auth::init(); // Login user Auth::login($_SESSION['installer']['user']['user'], $_SESSION['installer']['user']['password']); // Reset installer unset($_SESSION['installer']); Router::redirect('/'); } } catch(Exception $e){ $error = $e->getMessage(); } } elseif($_GET['go'] == 'prev'){ installer_prev($thisStep); } } ?>
You finished your installation!

Welcome to WebMUM - Web Mailserver User Manager.

If you like this project, be sure to give us a Star and Follow the project on GitHub https://github.com/ohartl/webmum
  1. To change the configuration you have to edit to config file "" (see the README for further instructions.
  2. If you've found a bug or got a great idea, feel free to submit an issue on GitHub here.

By clicking Finish you will end the installation process and get logged in automatically.

Step 6 of : Write the config & finish the installation!

The following config needs to be written to .

This is the last step, you are almost there!
Back