php mi config:all
icore/dbconfig.php
file.
php mi web-installer
to generate a new installer page. However, it is strongly advised that all configurations should be
handled from the terminal to ensure that all configurations are applied. To manually generate an installer page the following code may be
added to an installation route.
<?php namespace spoova\mi\windows\Routes; use Installer; use Window; class Install extends Window{ function __construct() { include_once(_core.'installer.php'); $Install = new Installer; $Install->install(); echo $Install->content(); } }