1) { die('File "private/INSTALLER_LOCK" exists. Please remove it if you wish to run the installer again.'); } if (!file_exists(__PRIVATE_DIR . "/vendor/autoload.php")) { die( '
composer update
in the ' .
'' . realpath(__BASE_DIR) . '
directory'
);
}
ini_set("display_errors", 1);
ini_set("display_startup_errors", 1);
error_reporting(E_ALL);
set_time_limit(0);
$stepNumber = empty($_GET["step"]) || !file_exists(__DIR__ . "/pages/" . (int)$_GET["step"] . ".php") ? 1 : (int) $_GET["step"];
ob_start();
require __DIR__ . "/pages/$stepNumber.php";
$pageContent = ob_get_clean();
?>