* init empty vars to avoid PHP8 warnings * removed debug output for serendipity_session_destroy() * init smarty fixed for PHP8 * removed optional parameters for PHP 8 * 2k11 template fixes, maybe updating smarty will solve everything * init or test undefined variables for PHP 8 * remove only existing files * make sure string is not empty before comparing the first letter * check if SMARTY_DIR was already defined * use mb_language('uni') for unicode * fixed image filter bug * Smarty debug fixed in external lib * fixed archive bug * fixed entries bug * updated plugin versions Co-authored-by: surrim <surrim@happyhydro.org>
80 lines
2.8 KiB
PHP
80 lines
2.8 KiB
PHP
<?php
|
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
|
# All rights reserved. See LICENSE file for licensing details
|
|
|
|
if (IN_serendipity !== true) {
|
|
die ("Don't hack!");
|
|
}
|
|
|
|
umask(0000);
|
|
$umask = 0775;
|
|
if (! defined('IN_installer')) { define('IN_installer', true); }
|
|
|
|
if (!isset($_POST['installAction'])) {
|
|
$_POST['installAction'] = '';
|
|
}
|
|
|
|
if (!serendipity_checkPermission('siteConfiguration') && !serendipity_checkPermission('blogConfiguration')) {
|
|
return;
|
|
}
|
|
|
|
$data = array();
|
|
|
|
if ($_POST['installAction'] == 'check' && serendipity_checkFormToken()) {
|
|
$data['installAction'] = 'check';
|
|
$oldConfig = $serendipity;
|
|
$res = serendipity_updateConfiguration();
|
|
$data['res'] = $res;
|
|
if (is_array($res)) {
|
|
$data['diagnosticError'] = true;
|
|
} else {
|
|
/* If we have new rewrite rules, then install them */
|
|
$permalinkOld = array(
|
|
$oldConfig['serendipityHTTPPath'],
|
|
$oldConfig['serendipityPath'],
|
|
$oldConfig['defaultBaseURL'],
|
|
$oldConfig['indexFile'],
|
|
$oldConfig['rewrite']);
|
|
|
|
$permalinkNew = array(
|
|
$serendipity['serendipityHTTPPath'],
|
|
$serendipity['serendipityPath'],
|
|
$serendipity['defaultBaseURL'],
|
|
$serendipity['indexFile'],
|
|
$serendipity['rewrite']);
|
|
|
|
// Compare all old permalink section values against new one. A change in any of those
|
|
// will force to update the .htaccess for rewrite rules.
|
|
$permconf = serendipity_parseTemplate(S9Y_CONFIG_TEMPLATE);
|
|
if (is_array($permconf) && is_array($permconf['permalinks']['items'])) {
|
|
foreach($permconf['permalinks']['items'] AS $permitem) {
|
|
$permalinkOld[] = $oldConfig[$permitem['var']];
|
|
$permalinkNew[] = $serendipity[$permitem['var']];
|
|
}
|
|
}
|
|
|
|
if (serendipity_checkPermission('siteConfiguration') && serialize($permalinkOld) != serialize($permalinkNew)) {
|
|
$data['htaccessRewrite'] = true;
|
|
$data['serendipityPath'] = $serendipity['serendipityPath'];
|
|
$res = serendipity_installFiles($serendipity['serendipityPath']);
|
|
$data['res'] = $res;
|
|
serendipity_buildPermalinks();
|
|
}
|
|
}
|
|
}
|
|
|
|
$data['config'] = serendipity_printConfigTemplate(serendipity_parseTemplate(S9Y_CONFIG_TEMPLATE), $serendipity, false, true);
|
|
|
|
if (!is_object($serendipity['smarty'] ?? null)) {
|
|
serendipity_smarty_init();
|
|
}
|
|
|
|
# php 8 compat section
|
|
if (! isset($data['installAction'])) { $data['installAction'] = null; }
|
|
if (! isset($data['adminAction'])) { $data['adminAction'] = null; }
|
|
|
|
echo serendipity_smarty_show('admin/configuration.inc.tpl', $data);
|
|
|
|
/* vim: set sts=4 ts=4 expandtab : */
|
|
?>
|