2 /***************************************************************
5 * (c) 1999-2009 Kasper Skaarhoj (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 * This is the MAIN DOCUMENT of the TypoScript driven standard front-end (from the "cms" extension)
29 * Basically this is the "index.php" script which all requests for TYPO3 delivered pages goes to in the frontend (the website)
33 * @author René Fritz <r.fritz@colorcube.de>
38 // *******************************
39 // Set error reporting
40 // *******************************
42 error_reporting (E_ALL ^ E_NOTICE
);
49 define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', (PHP_SAPI
=='cgi'||PHP_SAPI
=='isapi' ||PHP_SAPI
=='cgi-fcgi')&&($_SERVER['ORIG_PATH_TRANSLATED']?
$_SERVER['ORIG_PATH_TRANSLATED']:$_SERVER['PATH_TRANSLATED'])?
($_SERVER['ORIG_PATH_TRANSLATED']?
$_SERVER['ORIG_PATH_TRANSLATED']:$_SERVER['PATH_TRANSLATED']):($_SERVER['ORIG_SCRIPT_FILENAME']?
$_SERVER['ORIG_SCRIPT_FILENAME']:$_SERVER['SCRIPT_FILENAME']))));
51 define('PATH_site', dirname(PATH_thisScript
).'/');
53 if (@is_dir
(PATH_site
.'typo3/sysext/cms/tslib/')) {
54 define('PATH_tslib', PATH_site
.'typo3/sysext/cms/tslib/');
55 } elseif (@is_dir
(PATH_site
.'tslib/')) {
56 define('PATH_tslib', PATH_site
.'tslib/');
59 // define path to tslib/ here:
60 $configured_tslib_path = '';
63 // $configured_tslib_path = '/var/www/mysite/typo3/sysext/cms/tslib/';
65 define('PATH_tslib', $configured_tslib_path);
69 die('Cannot find tslib/. Please set path by defining $configured_tslib_path in '.basename(PATH_thisScript
).'.');
76 require (PATH_tslib
.'index_ts.php');