<?php 
/* 
 You may not change or alter any portion of this comment or credits 
 of supporting developers from this source code or any supporting source code 
 which is considered copyrighted (c) material of the original comment or credit authors. 
 
 This program is distributed in the hope that it will be useful, 
 but WITHOUT ANY WARRANTY; without even the implied warranty of 
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
*/ 
/** 
 * Installer common include file 
 * 
 * See the enclosed file license.txt for licensing information. 
 * If you did not receive this file, get it at http://www.gnu.org/licenses/gpl-2.0.html 
 * 
 * @copyright    (c) 2000-2016 XOOPS Project (www.xoops.org) 
 * @license          GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html) 
 * @package          installer 
 * @since            2.3.0 
 * @author           Haruki Setoyama  <[email protected]> 
 * @author           Kazumi Ono <[email protected]> 
 * @author           Skalpa Keo <[email protected]> 
 * @author           Taiwen Jiang <[email protected]> 
 * @author           DuGris (aka L. JEN) <[email protected]> 
 **/ 
 
/** 
 * If non-empty, only this user can access this installer 
 */ 
define('INSTALL_USER', ''); 
define('INSTALL_PASSWORD', ''); 
 
define('XOOPS_INSTALL', 1); 
 
function fatalPhpErrorHandler($e = null) { 
    $messageFormat = '<br><div>Fatal %s %s file: %s : %d </div>'; 
    $exceptionClass = '\Exception'; 
    $throwableClass = '\Throwable'; 
    if ($e === null) { 
        $lastError = error_get_last(); 
        if ($lastError['type'] === E_ERROR) { 
            // fatal error 
            printf($messageFormat, 'Error', $lastError['message'], $lastError['file'], $lastError['line']); 
        } 
    } elseif ($e instanceof $exceptionClass || $e instanceof $throwableClass) { 
        /** @var \Exception $e */ 
        printf($messageFormat, get_class($e), $e->getMessage(), $e->getFile(), $e->getLine()); 
    } 
} 
register_shutdown_function('fatalPhpErrorHandler'); 
set_exception_handler('fatalPhpErrorHandler'); 
 
// options for mainfile.php 
if (empty($xoopsOption['hascommon'])) { 
    $xoopsOption['nocommon'] = true; 
    session_start(); 
} 
@include '../mainfile.php'; 
if (!defined('XOOPS_ROOT_PATH')) { 
    define('XOOPS_ROOT_PATH', str_replace("\\", '/', realpath('../'))); 
} 
 
/* 
error_reporting( 0 ); 
if (isset($xoopsLogger)) { 
    $xoopsLogger->activated = false; 
} 
error_reporting(E_ALL); 
$xoopsLogger->activated = true; 
*/ 
 
date_default_timezone_set(@date_default_timezone_get()); 
include './class/installwizard.php'; 
include_once '../include/version.php'; 
include_once './include/functions.php'; 
include_once '../class/module.textsanitizer.php'; 
include_once '../class/libraries/vendor/autoload.php'; 
 
$pageHasHelp = false; 
$pageHasForm = false; 
 
$wizard = new XoopsInstallWizard(); 
if (!$wizard->xoInit()) { 
    exit(); 
} 
 
if (!@is_array($_SESSION['settings'])) { 
    $_SESSION['settings'] = array(); 
} 
 
 |