1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-20 01:38:17 +03:00
ifhub.club/application/install/index.php

30 lines
599 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
set_time_limit(0);
header('Content-Type: text/html; charset=utf-8');
require_once('bootstrap.php');
/**
* Определяем группы с шагами
*/
$aGroups = array(
'install' => array(
'checkRequirements',
'installDb',
'installAdmin',
'installComplete'
),
'update' => array(
'checkRequirements',
'updateDb' => array('hide_create_db' => true),
'updateVersion',
'updateComplete'
),
);
$oInstall = new InstallCore($aGroups);
$oInstall->run();