<?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 database configuration page
*
* See the enclosed file license.txt for licensing information.
* If you did not receive this file, get it at https://www.gnu.org/licenses/gpl-2.0.html
*
* @copyright (c) 2000-2025 XOOPS Project (https://xoops.org)
* @license GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @package installer
* @since 2.3.0
* @author Haruki Setoyama <haruki@planewave.org>
* @author Kazumi Ono <webmaster@myweb.ne.jp>
* @author Skalpa Keo <skalpa@xoops.org>
* @author Taiwen Jiang <phppp@users.sourceforge.net>
* @author DuGris (aka L. JEN) <dugris@frxoops.org>
**/
require_once __DIR__ . '/include/common.inc.php';
defined('XOOPS_INSTALL') || die('XOOPS Installation wizard die');
$pageHasForm = true;
$pageHasHelp = true;
$vars = & $_SESSION['settings'];
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$params = ['DB_TYPE', 'DB_HOST', 'DB_USER', 'DB_PASS'];
foreach ($params as $name) {
$vars[$name] = $_POST[$name];
}
$vars['DB_PCONNECT'] = isset($_POST['DB_PCONNECT']) ? 1 : 0;
}
$error = '';
if ($_SERVER['REQUEST_METHOD'] === 'POST' && !empty($vars['DB_HOST']) && !empty($vars['DB_USER'])) {
$hostConnectPrefix = empty($vars['DB_PCONNECT']) ? '' : 'p:';
mysqli_report(MYSQLI_REPORT_OFF);
$link = new mysqli($hostConnectPrefix . $vars['DB_HOST'], $vars['DB_USER'], $vars['DB_PASS']);
if (0 !== $link->connect_errno) {
$error = ERR_NO_DBCONNECTION . ' (' . $link->connect_errno . ') ' . $link->connect_error;
}
if (empty($error)) {
$wizard->redirectToPage('+1');
exit();
}
}
if (@empty($vars['DB_HOST'])) {
// Fill with default values
$vars = array_merge(
$vars,
[
'DB_TYPE' => 'mysql',
'DB_HOST' => 'localhost',
'DB_USER' => '',
'DB_PASS' => '',
'DB_PCONNECT' => 0,
],
);
}
ob_start();
?>
<?php if (!empty($error)) {
echo '<div class="alert alert-danger"><span class="fa-solid fa-ban text-danger"></span> ' . htmlspecialchars($error, ENT_QUOTES | ENT_HTML5) . "</div>\n";
} ?>
<div class="panel panel-info">
<div class="panel-heading"><?php echo LEGEND_CONNECTION; ?></div>
<div class="panel-body">
<?php echo xoFormSelect('DB_TYPE', $vars['DB_TYPE'], DB_DATABASE_LABEL, $wizard->configs['db_types']) ?>
<?php echo xoFormField('DB_HOST', $vars['DB_HOST'], DB_HOST_LABEL, DB_HOST_HELP); ?>
<?php echo xoFormField('DB_USER', $vars['DB_USER'], DB_USER_LABEL, DB_USER_HELP); ?>
<?php echo xoPassField('DB_PASS', $vars['DB_PASS'], DB_PASS_LABEL, DB_PASS_HELP); ?>
<div class="checkbox">
<label>
<input class="checkbox" type="checkbox" name="DB_PCONNECT" value="1" <?php echo $vars['DB_PCONNECT'] ? 'checked' : ''; ?>/>
<?php echo DB_PCONNECT_LABEL; ?>
</label>
<div class="xoform-help alert alert-info"><?php echo DB_PCONNECT_HELP; ?></div>
</div>
</div>
<?php
$content = ob_get_contents();
ob_end_clean();
include __DIR__ . '/include/install_tpl.php';
|