|
TYPO3 API
SVNRelease
|
00001 <?php 00002 /*************************************************************** 00003 * Copyright notice 00004 * 00005 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com) 00006 * All rights reserved 00007 * 00008 * This script is part of the TYPO3 project. The TYPO3 project is 00009 * free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * The GNU General Public License can be found at 00015 * http://www.gnu.org/copyleft/gpl.html. 00016 * A copy is found in the textfile GPL.txt and important notices to the license 00017 * from the author is found in LICENSE.txt distributed with these scripts. 00018 * 00019 * 00020 * This script is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * This copyright notice MUST APPEAR in all copies of the script! 00026 ***************************************************************/ 00027 /** 00028 * TYPO3 Backend initialization 00029 * 00030 * This script is called by every backend script. 00031 * The script authenticates the backend user. 00032 * In addition this script also initializes the database and other stuff by including the script localconf.php 00033 * 00034 * IMPORTANT: 00035 * This script exits if no user is logged in! 00036 * If you want the script to return even if no user is logged in, 00037 * you must define the constant TYPO3_PROCEED_IF_NO_USER=1 00038 * before you include this script. 00039 * 00040 * 00041 * This script does the following: 00042 * - extracts and defines path's 00043 * - includes certain libraries 00044 * - authenticates the user 00045 * - sets the configuration values (localconf.php) 00046 * - includes tables.php that sets more values and possibly overrides others 00047 * - load the groupdata for the user and set filemounts / webmounts 00048 * 00049 * For a detailed description of this script, the scope of constants and variables in it, 00050 * please refer to the document "Inside TYPO3" 00051 * 00052 * $Id: init.php 10460 2011-02-14 11:26:10Z tolleiv $ 00053 * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj 00054 * 00055 * @author Kasper Skårhøj <kasperYYYY@typo3.com> 00056 * @package TYPO3 00057 * @subpackage core 00058 */ 00059 00060 // ******************************* 00061 // Checking PHP version 00062 // ******************************* 00063 if (version_compare(phpversion(), '5.2', '<')) die ('TYPO3 requires PHP 5.2.0 or higher.'); 00064 00065 00066 // ******************************* 00067 // Set error reporting 00068 // ******************************* 00069 if (defined('E_DEPRECATED')) { 00070 error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED); 00071 } else { 00072 error_reporting(E_ALL ^ E_NOTICE); 00073 } 00074 00075 // ******************************* 00076 // Prevent any unwanted output that may corrupt AJAX/compression. Note: this does 00077 // not interfeer with "die()" or "echo"+"exit()" messages! 00078 // ******************************* 00079 ob_start(); 00080 00081 // ******************************* 00082 // Define constants 00083 // ******************************* 00084 define('TYPO3_OS', stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':''); 00085 define('TYPO3_MODE','BE'); 00086 define('PATH_thisScript', str_replace('//', '/', str_replace('\\', '/', 00087 (PHP_SAPI == 'fpm-fcgi' || PHP_SAPI == 'cgi' || PHP_SAPI == 'isapi' || PHP_SAPI == 'cgi-fcgi') && 00088 ($_SERVER['ORIG_PATH_TRANSLATED'] ? $_SERVER['ORIG_PATH_TRANSLATED'] : $_SERVER['PATH_TRANSLATED']) ? 00089 ($_SERVER['ORIG_PATH_TRANSLATED'] ? $_SERVER['ORIG_PATH_TRANSLATED'] : $_SERVER['PATH_TRANSLATED']) : 00090 ($_SERVER['ORIG_SCRIPT_FILENAME'] ? $_SERVER['ORIG_SCRIPT_FILENAME'] : $_SERVER['SCRIPT_FILENAME'])))); 00091 00092 define('TYPO3_mainDir', 'typo3/'); // This is the directory of the backend administration for the sites of this TYPO3 installation. 00093 00094 00095 // ******************************* 00096 // Fix BACK_PATH, if the TYPO3_mainDir is set to something else than 00097 // typo3/, this is a workaround because the conf.php of the old modules 00098 // still have "typo3/" hardcoded. Can be removed once we don't have to worry about 00099 // legacy modules (with conf.php and $BACK_PATH) anymore. See RFC / Bug #13262 for more details. 00100 // ******************************* 00101 if (isset($BACK_PATH) && strlen($BACK_PATH) > 0 && TYPO3_mainDir != 'typo3/' && substr($BACK_PATH, -7) == '/typo3/') { 00102 $BACK_PATH = substr($BACK_PATH, 0, -6) . TYPO3_mainDir; 00103 } 00104 00105 // ******************************* 00106 // Checking path 00107 // ******************************* 00108 $temp_path = str_replace('\\','/',dirname(PATH_thisScript).'/'); 00109 $temp_modPath=''; 00110 // If TYPO3_MOD_PATH is defined we must calculate the modPath since init.php must be included by a module 00111 if (substr($temp_path,-strlen(TYPO3_mainDir))!=TYPO3_mainDir) { 00112 if (defined('TYPO3_MOD_PATH')) { 00113 if (substr($temp_path,-strlen(TYPO3_MOD_PATH))==TYPO3_MOD_PATH) { 00114 $temp_path=substr($temp_path,0,-strlen(TYPO3_MOD_PATH)); 00115 $temp_modPath=TYPO3_MOD_PATH; 00116 } elseif (substr(TYPO3_MOD_PATH,0,13)=='../typo3conf/' && (substr(TYPO3_MOD_PATH,3)==substr($temp_path,-strlen(substr(TYPO3_MOD_PATH,3))))) { 00117 $temp_path = substr($temp_path,0,-strlen(substr(TYPO3_MOD_PATH,3))).TYPO3_mainDir; 00118 $temp_modPath=TYPO3_MOD_PATH; 00119 } 00120 if (!@is_dir($temp_path)) { 00121 $temp_path=''; 00122 } 00123 } 00124 } 00125 00126 // OUTPUT error message and exit if there are problems with the path. Otherwise define constants and continue. 00127 if (!$temp_path || substr($temp_path,-strlen(TYPO3_mainDir))!=TYPO3_mainDir) { // This must be the case in order to proceed 00128 if (TYPO3_OS=='WIN') { 00129 $thisPath_base = basename(substr($temp_path,-strlen(TYPO3_mainDir))); 00130 $mainPath_base = basename(TYPO3_mainDir); 00131 if (!strcasecmp($thisPath, $mainPath)) { // Seems like the requested URL is not case-specific. This may happen on Windows only. -case. Otherwise, redirect to the correct URL. TYPO3_mainDir must be lower-case!! 00132 $script_name = (PHP_SAPI=='fpm-fcgi' || PHP_SAPI=='cgi' || PHP_SAPI=='cgi-fcgi') && 00133 ($_SERVER['ORIG_PATH_INFO'] ? $_SERVER['ORIG_PATH_INFO'] : $_SERVER['PATH_INFO']) ? 00134 ($_SERVER['ORIG_PATH_INFO'] ? $_SERVER['ORIG_PATH_INFO'] : $_SERVER['PATH_INFO']) : 00135 ($_SERVER['ORIG_SCRIPT_NAME']?$_SERVER['ORIG_SCRIPT_NAME']:$_SERVER['SCRIPT_NAME']); // Copied from t3lib_div::getIndpEnv() 00136 00137 header('Location: '.str_replace($thisPath_base, $mainPath_base, $script_name)); 00138 exit; 00139 } 00140 } 00141 00142 echo 'Error in init.php: Path to TYPO3 main dir could not be resolved correctly. <br /><br />'; 00143 00144 echo '<font color="red"><strong>'; 00145 if (strstr($temp_path,'typo3_src')) { 00146 echo 'It seems you are trying to run the TYPO3 source libraries DIRECTLY! You cannot do that.<br /> 00147 Please read the installation documents for more information.'; 00148 } else { 00149 $temp_path_parts = explode('/', $temp_path); 00150 $temp_path_parts = array_slice($temp_path_parts, count($temp_path_parts) - 3); 00151 $temp_path = '..../' . implode('/', $temp_path_parts); 00152 echo 'This happens if the last ' . strlen(TYPO3_mainDir) . ' characters of this path, ' . $temp_path . ' (end of $temp_path), is NOT "' . TYPO3_mainDir . '" for some reason.<br /> 00153 You may have a strange server configuration. 00154 Or maybe you didn\'t set constant TYPO3_MOD_PATH in your module?'; 00155 } 00156 echo '</strong></font>'; 00157 00158 echo '<br /><br />If you want to debug this issue, please edit typo3/init.php of your TYPO3 source and search for the die() call right after this line (search for this text to find)...'; 00159 00160 // Remove this line if you want to debug this problem a little more... 00161 die(); 00162 echo '<br /><br /><strong>If you expect any help from anybody on this issue, you should save this page as an html document and send it along with your request for help!</strong>'; 00163 echo '<hr /><pre>'; 00164 print_r(array( 00165 'TYPO3_OS'=>TYPO3_OS, 00166 'PATH_thisScript'=>PATH_thisScript, 00167 'php_sapi_name()'=>PHP_SAPI, 00168 'TYPO3_MOD_PATH'=>TYPO3_MOD_PATH, 00169 'PATH_TRANSLATED'=>$_SERVER['PATH_TRANSLATED'], 00170 'SCRIPT_FILENAME'=>$_SERVER['SCRIPT_FILENAME'] 00171 )); 00172 echo '</pre><hr />'; 00173 phpinfo(); 00174 exit; 00175 } else { 00176 define('PATH_typo3', $temp_path); // Abs. path of the TYPO3 admin dir (PATH_site + TYPO3_mainDir). 00177 define('PATH_typo3_mod', $temp_modPath); // Relative path (from the PATH_typo3) to a properly configured module 00178 define('PATH_site', substr(PATH_typo3,0,-strlen(TYPO3_mainDir))); // Abs. path to directory with the frontend (one above the admin-dir) 00179 $temp_path_t3lib = @is_dir(PATH_site.'t3lib/') ? PATH_site.'t3lib/' : PATH_typo3.'t3lib/'; 00180 define('PATH_t3lib', $temp_path_t3lib); // Abs. path to t3lib/ (general TYPO3 library) within the TYPO3 admin dir 00181 define('PATH_typo3conf', PATH_site.'typo3conf/'); // Abs. TYPO3 configuration path (local, not part of source) 00182 00183 if (!defined('PATH_tslib')) { 00184 if (@is_dir(PATH_site . TYPO3_mainDir . 'sysext/cms/tslib/')) { 00185 define('PATH_tslib', PATH_site . TYPO3_mainDir . 'sysext/cms/tslib/'); 00186 } elseif (@is_dir(PATH_site . 'tslib/')) { 00187 define('PATH_tslib', PATH_site . 'tslib/'); 00188 } 00189 } 00190 } 00191 00192 // ********************* 00193 // Unset variable(s) in global scope (fixes #13959) 00194 // ********************* 00195 unset($error); 00196 00197 // ************************************************* 00198 // t3lib_div + extention management class included 00199 // ************************************************* 00200 require_once(PATH_t3lib.'class.t3lib_div.php'); // The standard-library is included 00201 require_once(PATH_t3lib.'class.t3lib_extmgm.php'); // Extension API Management library included 00202 00203 // **************************************************** 00204 // Include configuration (localconf + ext_localconf) 00205 // **************************************************** 00206 require(PATH_t3lib.'config_default.php'); 00207 if (!defined ('TYPO3_db')) die ('The configuration file was not included.'); 00208 00209 00210 00211 00212 // ********************* 00213 // Error & Exception handling 00214 // ********************* 00215 if ($TYPO3_CONF_VARS['SC_OPTIONS']['errors']['exceptionHandler'] !== '') { 00216 if ($TYPO3_CONF_VARS['SYS']['errorHandler'] !== '') { 00217 // register an error handler for the given errorHandlerErrors 00218 $errorHandler = t3lib_div::makeInstance($TYPO3_CONF_VARS['SYS']['errorHandler'], $TYPO3_CONF_VARS['SYS']['errorHandlerErrors']); 00219 // set errors which will be converted in an exception 00220 $errorHandler->setExceptionalErrors($TYPO3_CONF_VARS['SC_OPTIONS']['errors']['exceptionalErrors']); 00221 } 00222 $exceptionHandler = t3lib_div::makeInstance($TYPO3_CONF_VARS['SC_OPTIONS']['errors']['exceptionHandler']); 00223 } 00224 00225 /** @var TYPO3_DB t3lib_db */ 00226 $TYPO3_DB = t3lib_div::makeInstance('t3lib_DB'); 00227 $TYPO3_DB->debugOutput = $TYPO3_CONF_VARS['SYS']['sqlDebug']; 00228 00229 $CLIENT = t3lib_div::clientInfo(); // $CLIENT includes information about the browser/user-agent 00230 $PARSETIME_START = t3lib_div::milliseconds(); // Is set to the system time in milliseconds. This could be used to output script parsetime in the end of the script 00231 00232 // *********************************** 00233 // Initializing the Caching System 00234 // *********************************** 00235 00236 if (TYPO3_UseCachingFramework) { 00237 $typo3CacheManager = t3lib_div::makeInstance('t3lib_cache_Manager'); 00238 $typo3CacheFactory = t3lib_div::makeInstance('t3lib_cache_Factory'); 00239 $typo3CacheFactory->setCacheManager($typo3CacheManager); 00240 00241 t3lib_cache::initPageCache(); 00242 t3lib_cache::initPageSectionCache(); 00243 t3lib_cache::initContentHashCache(); 00244 } 00245 // ************************* 00246 // CLI dispatch processing 00247 // ************************* 00248 if ((TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_CLI) && basename(PATH_thisScript) == 'cli_dispatch.phpsh') { 00249 // First, take out the first argument (cli-key) 00250 $temp_cliScriptPath = array_shift($_SERVER['argv']); 00251 $temp_cliKey = array_shift($_SERVER['argv']); 00252 array_unshift($_SERVER['argv'],$temp_cliScriptPath); 00253 00254 // If cli_key was found in configuration, then set up the cliInclude path and module name: 00255 if ($temp_cliKey) { 00256 if (is_array($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys'][$temp_cliKey])) { 00257 define('TYPO3_cliInclude', t3lib_div::getFileAbsFileName($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys'][$temp_cliKey][0])); 00258 $MCONF['name'] = $TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys'][$temp_cliKey][1]; 00259 } else { 00260 echo "The supplied 'cliKey' was not valid. Please use one of the available from this list:\n\n"; 00261 print_r(array_keys($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys'])); 00262 echo LF; 00263 exit; 00264 } 00265 } else { 00266 echo "Please supply a 'cliKey' as first argument. The following are available:\n\n"; 00267 print_r($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys']); 00268 echo LF; 00269 exit; 00270 } 00271 } 00272 00273 00274 // ********************** 00275 // Check Hardcoded lock on BE: 00276 // ********************** 00277 if ($TYPO3_CONF_VARS['BE']['adminOnly'] < 0) { 00278 throw new RuntimeException('TYPO3 Backend locked: Backend and Install Tool are locked for maintenance. [BE][adminOnly] is set to "' . intval($TYPO3_CONF_VARS['BE']['adminOnly']) . '".'); 00279 } 00280 if (!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_CLI) && @is_file(PATH_typo3conf . 'LOCK_BACKEND')) { 00281 if (TYPO3_PROCEED_IF_NO_USER == 2) { 00282 // ajax poll for login, let him pass 00283 } else { 00284 $fContent = t3lib_div::getUrl(PATH_typo3conf.'LOCK_BACKEND'); 00285 if ($fContent) { 00286 header('Location: '.$fContent); // Redirect 00287 } else { 00288 throw new RuntimeException('TYPO3 Backend locked: Browser backend is locked for maintenance. Remove lock by removing the file "typo3conf/LOCK_BACKEND" or use CLI-scripts.'); 00289 } 00290 exit; 00291 } 00292 00293 } 00294 00295 // ********************** 00296 // Check IP 00297 // ********************** 00298 if (trim($TYPO3_CONF_VARS['BE']['IPmaskList']) && !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_CLI)) { 00299 if (!t3lib_div::cmpIP(t3lib_div::getIndpEnv('REMOTE_ADDR'), $TYPO3_CONF_VARS['BE']['IPmaskList'])) { 00300 header('Status: 404 Not Found'); // Send Not Found header - if the webserver can make use of it... 00301 header('Location: http://'); // Just point us away from here... 00302 exit; // ... and exit good! 00303 } 00304 } 00305 00306 00307 // ********************** 00308 // Check SSL (https) 00309 // ********************** 00310 if (intval($TYPO3_CONF_VARS['BE']['lockSSL']) && !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_CLI)) { 00311 if(intval($TYPO3_CONF_VARS['BE']['lockSSLPort'])) { 00312 $sslPortSuffix = ':'.intval($TYPO3_CONF_VARS['BE']['lockSSLPort']); 00313 } else { 00314 $sslPortSuffix = ''; 00315 } 00316 if ($TYPO3_CONF_VARS['BE']['lockSSL'] == 3) { 00317 $requestStr = substr(t3lib_div::getIndpEnv('TYPO3_REQUEST_SCRIPT'), strlen(t3lib_div::getIndpEnv('TYPO3_SITE_URL').TYPO3_mainDir)); 00318 if($requestStr == 'index.php' && !t3lib_div::getIndpEnv('TYPO3_SSL')) { 00319 list(,$url) = explode('://',t3lib_div::getIndpEnv('TYPO3_REQUEST_URL'),2); 00320 list($server,$address) = explode('/',$url,2); 00321 header('Location: https://'.$server.$sslPortSuffix.'/'.$address); 00322 exit; 00323 } 00324 } elseif (!t3lib_div::getIndpEnv('TYPO3_SSL') ) { 00325 if ($TYPO3_CONF_VARS['BE']['lockSSL'] == 2) { 00326 list(,$url) = explode('://',t3lib_div::getIndpEnv('TYPO3_SITE_URL').TYPO3_mainDir,2); 00327 list($server,$address) = explode('/',$url,2); 00328 header('Location: https://'.$server.$sslPortSuffix.'/'.$address); 00329 } else { 00330 header('Status: 404 Not Found'); // Send Not Found header - if the webserver can make use of it... 00331 header('Location: http://'); // Just point us away from here... 00332 } 00333 exit; // ... and exit good! 00334 } 00335 } 00336 00337 00338 // ******************************* 00339 // Checking environment 00340 // ******************************* 00341 if (isset($_POST['GLOBALS']) || isset($_GET['GLOBALS'])) die('You cannot set the GLOBALS-array from outside the script.'); 00342 if (!get_magic_quotes_gpc()) { 00343 t3lib_div::addSlashesOnArray($_GET); 00344 t3lib_div::addSlashesOnArray($_POST); 00345 $HTTP_GET_VARS = $_GET; 00346 $HTTP_POST_VARS = $_POST; 00347 } 00348 00349 00350 // ******************************************** 00351 // Check if the install script should be run: 00352 // ******************************************** 00353 if (TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL) { 00354 if(!t3lib_extMgm::isLoaded('install')) { 00355 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\'].'); 00356 } 00357 00358 require_once(t3lib_extMgm::extPath('install').'mod/class.tx_install.php'); 00359 $install_check = t3lib_div::makeInstance('tx_install'); 00360 $install_check->allowUpdateLocalConf = 1; 00361 $install_check->init(); 00362 exit; 00363 } 00364 00365 00366 // ************************* 00367 // Connect to the database 00368 // ************************* 00369 // Redirect to install tool if database host and database are not defined 00370 if (!TYPO3_db_host && !TYPO3_db) { 00371 t3lib_utility_Http::redirect('install/index.php?mode=123&step=1&password=joh316'); 00372 } elseif ($TYPO3_DB->sql_pconnect(TYPO3_db_host, TYPO3_db_username, TYPO3_db_password)) { 00373 if (!TYPO3_db) { 00374 throw new RuntimeException('Database Error: No database selected', time()); 00375 } elseif (!$TYPO3_DB->sql_select_db(TYPO3_db)) { 00376 throw new RuntimeException('Database Error: Cannot connect to the current database, "' . TYPO3_db . '"', time()); 00377 } 00378 } else { 00379 throw new RuntimeException('Database Error: The current username, password or host was not accepted when the connection to the database was attempted to be established!', time()); 00380 } 00381 00382 00383 // ******************************* 00384 // Checks for proper browser 00385 // ******************************* 00386 if (!$CLIENT['BROWSER'] && !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_CLI)) { 00387 throw new RuntimeException('Browser Error: Your browser version looks incompatible with this TYPO3 version!', time()); 00388 } 00389 00390 00391 // **************************************************** 00392 // Include tables customization (tables + ext_tables) 00393 // **************************************************** 00394 include (TYPO3_tables_script ? PATH_typo3conf.TYPO3_tables_script : PATH_t3lib.'stddb/tables.php'); 00395 // Extension additions 00396 if ($TYPO3_LOADED_EXT['_CACHEFILE']) { 00397 include (PATH_typo3conf.$TYPO3_LOADED_EXT['_CACHEFILE'].'_ext_tables.php'); 00398 } else { 00399 include (PATH_t3lib.'stddb/load_ext_tables.php'); 00400 } 00401 // extScript 00402 if (TYPO3_extTableDef_script) { 00403 include (PATH_typo3conf.TYPO3_extTableDef_script); 00404 } 00405 00406 // load TYPO3 SpriteGenerating API 00407 $spriteManager = t3lib_div::makeInstance('t3lib_SpriteManager', TRUE); 00408 $spriteManager->loadCacheFile(); 00409 00410 00411 // ******************************* 00412 // BackEnd User authentication 00413 // ******************************* 00414 /* 00415 NOTICE: 00416 if constant TYPO3_PROCEED_IF_NO_USER is defined true (in the mainscript), this script will return even though a user did not log in! 00417 */ 00418 $BE_USER = t3lib_div::makeInstance('t3lib_beUserAuth'); // New backend user object 00419 $BE_USER->warningEmail = $TYPO3_CONF_VARS['BE']['warning_email_addr']; 00420 $BE_USER->lockIP = $TYPO3_CONF_VARS['BE']['lockIP']; 00421 $BE_USER->auth_timeout_field = intval($TYPO3_CONF_VARS['BE']['sessionTimeout']); 00422 $BE_USER->OS = TYPO3_OS; 00423 if (TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_CLI) { 00424 $BE_USER->dontSetCookie = TRUE; 00425 } 00426 $BE_USER->start(); // Object is initialized 00427 $BE_USER->checkCLIuser(); 00428 $BE_USER->backendCheckLogin(); // Checking if there's a user logged in 00429 00430 // Setting the web- and filemount global vars: 00431 $WEBMOUNTS = $BE_USER->returnWebmounts(); // ! WILL INCLUDE deleted mount pages as well! 00432 $FILEMOUNTS = $BE_USER->returnFilemounts(); 00433 00434 // ******************************* 00435 // $GLOBALS['LANG'] initialisation 00436 // ******************************* 00437 $GLOBALS['LANG'] = t3lib_div::makeInstance('language'); 00438 $GLOBALS['LANG']->init($BE_USER->uc['lang']); 00439 00440 00441 // **************** 00442 // CLI processing 00443 // **************** 00444 if (TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_CLI) { 00445 // Status output: 00446 if (!strcmp($_SERVER['argv'][1],'status')) { 00447 echo "Status of TYPO3 CLI script:\n\n"; 00448 echo "Username [uid]: ".$BE_USER->user['username']." [".$BE_USER->user['uid']."]\n"; 00449 echo "Database: ".TYPO3_db.LF; 00450 echo "PATH_site: ".PATH_site.LF; 00451 echo LF; 00452 exit; 00453 } 00454 } 00455 00456 // **************** 00457 // compression 00458 // **************** 00459 ob_clean(); 00460 if (extension_loaded('zlib') && $TYPO3_CONF_VARS['BE']['compressionLevel']) { 00461 if (t3lib_div::testInt($TYPO3_CONF_VARS['BE']['compressionLevel'])) { 00462 @ini_set('zlib.output_compression_level', $TYPO3_CONF_VARS['BE']['compressionLevel']); 00463 } 00464 ob_start('ob_gzhandler'); 00465 } 00466 00467 ?>
1.8.0