Просмотр файла install/index.php

Размер файла: 457B
  1. <?php
  2. $start = microtime(true);
  3.  
  4. if (file_exists('../engine/files/data/settings.ini'))
  5. exit('Движок уже установлен');
  6.  
  7. define('H', $_SERVER['DOCUMENT_ROOT'].'/');
  8.  
  9. $step = isset($_GET['step']) ? ($_GET['step'] > 4 ? 4 : $_GET['step']) : 0;
  10.  
  11. ob_start();
  12. session_start();
  13. include 'inc/head.php';
  14.  
  15. if (!isset($_SESSION['install_step']))$_SESSION['install_step']=0;
  16.  
  17. include 'inc/step_'.$_SESSION['install_step'].'.php';