3 * This file is part of the TYPO3 CMS project.
5 * It is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License, either version 2
7 * of the License, or any later version.
9 * For the full copyright and license information, please read the
10 * LICENSE.txt file that was distributed with this source code.
12 * The TYPO3 project - inspiring people to share!
16 * This is the MAIN DOCUMENT of the TypoScript driven standard frontend.
17 * Basically this is the "index.php" script which all requests for TYPO3
18 * delivered pages goes to in the frontend (the website)
22 * This check avoids a parse error "unexpected 'class'" for users installing TYPO3 CMS 7
23 * on PHP 5.4. Without it the redirect to the install tool does not work.
24 * @see https://forge.typo3.org/issues/64504
26 if (version_compare(PHP_VERSION
, '5.5.0', '<')) {
27 die('TYPO3 CMS requires PHP 5.5 or above');
30 define('TYPO3_MODE', 'FE');
32 require __DIR__
. '/typo3/sysext/core/Classes/Core/Bootstrap.php';
33 \TYPO3\CMS\Core\Core\Bootstrap
::getInstance()
35 ->redirectToInstallerIfEssentialConfigurationDoesNotExist()
36 ->startOutputBuffering()
37 ->loadConfigurationAndInitialize();
39 $frontendRequestHandler = new \TYPO3\CMS\Frontend\
FrontendRequestHandler();
40 $frontendRequestHandler->handleRequest();