* @license http://www.contenido.org/license/LIZENZ.txt * @link http://www.4fb.de * @link http://www.contenido.org * }} * */ if (!defined('CON_FRAMEWORK')) { define('CON_FRAMEWORK', true); } define('CON_SETUP_PATH', str_replace('\\', '/', realpath(__DIR__))); define('CON_FRONTEND_PATH', str_replace('\\', '/', realpath(__DIR__ . '/../'))); include_once('lib/startup.php'); if (is_array($_REQUEST)) { foreach ($_REQUEST as $key => $value) { if (($value != '' && $key != 'dbpass') || ($key == 'dbpass' && $_REQUEST['dbpass_changed'] == 'true')) { $_SESSION[$key] = $value; } } /* ################################################################################ // FIXME Following lines of code would enshure that previous selected optional // settings will be removed from session, if they are unselected afterwards. // But, how should we handle not selected plugins, whose files will be included // even if the are not installed? // check for not selected options (radio button or checkbox) $aSetupOptionalSettingsList = array( 'setup7' => array( 'plugin_newsletter', 'plugin_content_allocation', 'plugin_mod_rewrite', ) ); if (isset($_REQUEST['step']) && isset($aSetupOptionalSettingsList[$_REQUEST['step']])) { $aList = $aSetupOptionalSettingsList[$_REQUEST['step']]; foreach ($aList as $key) { if (isset($_SESSION[$key]) && !isset($_REQUEST[$key])) { unset($_SESSION[$key]); } } } ################################################################################ */ } if (ini_get('session.use_cookies') == 0) { $sNotInstallableReason = 'session_use_cookies'; checkAndInclude('steps/notinstallable.php'); } if (hasMySQLiExtension() && !hasMySQLExtension()) { // use MySQLi extension by default if available $cfg['database_extension'] = 'mysqli'; } elseif (hasMySQLExtension()) { // use MySQL extension if available $cfg['database_extension'] = 'mysql'; } else { $sNotInstallableReason = 'database_extension'; checkAndInclude('steps/notinstallable.php'); } checkAndInclude('../conlib/prepend.php'); i18nRegisterDomain("setup", 'locale/'); if (array_key_exists('language', $_SESSION)) { i18nInit('locale/', $_SESSION['language']); } if (version_compare(PHP_VERSION, C_SETUP_MIN_PHP_VERSION, '<')) { $sNotInstallableReason = 'php_version'; checkAndInclude('steps/notinstallable.php'); } if (array_key_exists('step', $_REQUEST)) { $iStep = $_REQUEST['step']; } else { $iStep = ''; } match ($iStep) { 'setuptype' => checkAndInclude('steps/setuptype.php'), 'setup1' => checkAndInclude('steps/setup/step1.php'), 'setup2' => checkAndInclude('steps/setup/step2.php'), 'setup3' => checkAndInclude('steps/setup/step3.php'), 'setup4' => checkAndInclude('steps/setup/step4.php'), 'setup5' => checkAndInclude('steps/setup/step5.php'), 'setup6' => checkAndInclude('steps/setup/step6.php'), 'setup7' => checkAndInclude('steps/setup/step7.php'), 'setup8' => checkAndInclude('steps/setup/step8.php'), 'migration1' => checkAndInclude('steps/migration/step1.php'), 'migration2' => checkAndInclude('steps/migration/step2.php'), 'migration3' => checkAndInclude('steps/migration/step3.php'), 'migration4' => checkAndInclude('steps/migration/step4.php'), 'migration5' => checkAndInclude('steps/migration/step5.php'), 'migration6' => checkAndInclude('steps/migration/step6.php'), 'migration7' => checkAndInclude('steps/migration/step7.php'), 'migration8' => checkAndInclude('steps/migration/step8.php'), 'upgrade1' => checkAndInclude('steps/upgrade/step1.php'), 'upgrade2' => checkAndInclude('steps/upgrade/step2.php'), 'upgrade3' => checkAndInclude('steps/upgrade/step3.php'), 'upgrade4' => checkAndInclude('steps/upgrade/step4.php'), 'upgrade5' => checkAndInclude('steps/upgrade/step5.php'), 'upgrade6' => checkAndInclude('steps/upgrade/step6.php'), 'upgrade7' => checkAndInclude('steps/upgrade/step7.php'), 'domigration' => checkAndInclude('steps/migration/domigration.php'), 'doupgrade' => checkAndInclude('steps/upgrade/doupgrade.php'), 'doinstall' => checkAndInclude('steps/setup/doinstall.php'), default => checkAndInclude('steps/languagechooser.php'), };