2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Starter-script for install screen
30 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
37 define('TYPO3_MODE', 'BE');
38 define('TYPO3_enterInstallScript', '1');
40 require('../Bootstrap.php');
41 Typo3_Bootstrap
::checkEnvironmentOrDie();
42 Typo3_Bootstrap
::defineBaseConstants();
43 Typo3_Bootstrap
::defineAndCheckPaths('typo3/install/');
44 Typo3_Bootstrap
::requireBaseClasses();
45 Typo3_Bootstrap
::setUpEnvironment();
47 require('../Bootstrap_Install.php');
48 Typo3_Bootstrap_Install
::checkEnabledInstallToolOrDie();
50 require(PATH_t3lib
. 'config_default.php');
52 Typo3_Bootstrap
::initializeTypo3DbGlobal(FALSE
);
54 Typo3_Bootstrap
::checkLockedBackendAndRedirectOrDie();
56 Typo3_Bootstrap
::checkBackendIpOrDie();
58 Typo3_Bootstrap
::checkSslBackendAndRedirectIfNeeded();
61 if (!t3lib_extMgm
::isLoaded('install')) {
62 die('Install Tool is not loaded as an extension.<br />You must add the key "install" to the list of installed extensions in typo3conf/localconf.php, $TYPO3_CONF_VARS[\'EXT\'][\'extList\'].');
65 require_once(t3lib_extMgm
::extPath('install') . 'mod/class.tx_install.php');
66 $install_check = t3lib_div
::makeInstance('tx_install');
67 $install_check->allowUpdateLocalConf
= 1;
68 $install_check->init();