<?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 db inserting page
*
* 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]>
*/
require_once './include/common.inc.php';
defined('XOOPS_INSTALL') || die('XOOPS Installation wizard die');
$pageHasForm = false;
$pageHasHelp = false;
$vars =& $_SESSION['settings'];
include_once '../mainfile.php';
include_once './class/dbmanager.php';
$dbm = new Db_manager();
if (!$dbm->isConnectable()) {
$wizard->redirectToPage('dbsettings');
exit();
}
$res = $dbm->query('SELECT COUNT(*) FROM ' . $dbm->db->prefix('users'));
if (!$res) {
$wizard->redirectToPage('dbsettings');
exit();
}
list($count) = $dbm->db->fetchRow($res);
$process = ($count == 0);
$update = false;
extract($_SESSION['siteconfig'], EXTR_SKIP);
include_once './include/makedata.php';
//$cm = 'dummy';
$wizard->loadLangFile('install2');
$licenseFile = XOOPS_VAR_PATH . '/data/license.php';
$touched = touch($licenseFile);
if ($touched) {
$licenseReport = '<div class="alert alert-success"><span class="fa fa-check text-success"></span> '
. writeLicenseKey() . '</div>';
} else {
$licenseReport = '<div class="alert alert-danger"><span class="fa fa-ban text-danger"></span> '
. sprintf(LICENSE_NOT_WRITEABLE, $licenseFile) . '</div>';
}
$error = false;
$hashedAdminPass = password_hash($adminpass, PASSWORD_DEFAULT);
if ($process) {
$result = $dbm->queryFromFile('./sql/' . XOOPS_DB_TYPE . '.data.sql');
$result = $dbm->queryFromFile('./language/' . $wizard->language . '/' . XOOPS_DB_TYPE . '.lang.data.sql');
$group = make_groups($dbm);
$result = make_data($dbm, $adminname, $hashedAdminPass, $adminmail, $wizard->language, $group);
$content = '<div class="alert alert-success"><span class="fa fa-check text-success"></span> '
. DATA_INSERTED . '</div><div class="well">' . $dbm->report() . '</div>';
} else {
$content = '<div class="alert alert-info"><span class="fa fa-info-circle text-info"></span> '
. DATA_ALREADY_INSERTED . '</div>';
}
$content .= $licenseReport;
setcookie('xo_install_user', '', null, null, null);
if (!empty($_SESSION['settings']['authorized']) && !empty($adminname) && !empty($adminpass)) {
$claims = array(
'uname' => $adminname,
'sub' => 'xoopsinstall',
);
$token = \Xmf\Jwt\TokenFactory::build('install', $claims, 60*60);
setcookie('xo_install_user', $token, 0, null, null, null, true);
}
include './include/install_tpl.php';
|