00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 if (version_compare(phpversion(), '5.2', '<')) die ('TYPO3 requires PHP 5.2.0 or higher.');
00064
00065
00066
00067
00068
00069 error_reporting (E_ALL ^ E_NOTICE);
00070
00071
00072
00073
00074
00075 ob_start();
00076
00077
00078
00079
00080 define('TYPO3_OS', stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':'');
00081 define('TYPO3_MODE','BE');
00082 define('PATH_thisScript',str_replace('
00083 define('TYPO3_mainDir', 'typo3/');
00084
00085
00086
00087
00088
00089 $temp_path = str_replace('\\','/',dirname(PATH_thisScript).'/');
00090 $temp_modPath='';
00091
00092 if (substr($temp_path,-strlen(TYPO3_mainDir))!=TYPO3_mainDir) {
00093 if (defined('TYPO3_MOD_PATH')) {
00094 if (substr($temp_path,-strlen(TYPO3_MOD_PATH))==TYPO3_MOD_PATH) {
00095 $temp_path=substr($temp_path,0,-strlen(TYPO3_MOD_PATH));
00096 $temp_modPath=TYPO3_MOD_PATH;
00097 } elseif (substr(TYPO3_MOD_PATH,0,13)=='../typo3conf/' && (substr(TYPO3_MOD_PATH,3)==substr($temp_path,-strlen(substr(TYPO3_MOD_PATH,3))))) {
00098 $temp_path = substr($temp_path,0,-strlen(substr(TYPO3_MOD_PATH,3))).TYPO3_mainDir;
00099 $temp_modPath=TYPO3_MOD_PATH;
00100 }
00101 if (!@is_dir($temp_path)) {
00102 $temp_path='';
00103 }
00104 }
00105 }
00106
00107
00108 if (!$temp_path || substr($temp_path,-strlen(TYPO3_mainDir))!=TYPO3_mainDir) {
00109 if (TYPO3_OS=='WIN') {
00110 $thisPath_base = basename(substr($temp_path,-strlen(TYPO3_mainDir)));
00111 $mainPath_base = basename(TYPO3_mainDir);
00112 if (!strcasecmp($thisPath, $mainPath)) {
00113 $script_name = (php_sapi_name()=='cgi'||php_sapi_name()=='cgi-fcgi')&&($_SERVER['ORIG_PATH_INFO']?$_SERVER['ORIG_PATH_INFO']:$_SERVER['PATH_INFO']) ? ($_SERVER['ORIG_PATH_INFO']?$_SERVER['ORIG_PATH_INFO']:$_SERVER['PATH_INFO']) : ($_SERVER['ORIG_SCRIPT_NAME']?$_SERVER['ORIG_SCRIPT_NAME']:$_SERVER['SCRIPT_NAME']);
00114 header('Location: '.str_replace($thisPath_base, $mainPath_base, $script_name));
00115 exit;
00116 }
00117 }
00118
00119 echo 'Error in init.php: Path to TYPO3 main dir could not be resolved correctly. <br /><br />';
00120
00121 echo '<font color="red"><strong>';
00122 if (strstr($temp_path,'typo3_src')) {
00123 echo 'It seems you are trying to run the TYPO3 source libraries DIRECTLY! You cannot do that.<br />
00124 Please read the installation documents for more information.';
00125 } else {
00126 echo 'This happens if the last '.strlen(TYPO3_mainDir).' characters of this path, '.$temp_path.' ($temp_path), is NOT "'.TYPO3_mainDir.'" for some reason.<br />
00127 You may have a strange server configuration.
00128 Or maybe you didn\'t set constant TYPO3_MOD_PATH in your module?';
00129 }
00130 echo '</strong></font>';
00131
00132 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)...';
00133
00134
00135 die();
00136 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>';
00137 echo '<HR><pre>';
00138 print_r(array(
00139 'TYPO3_OS'=>TYPO3_OS,
00140 'PATH_thisScript'=>PATH_thisScript,
00141 'php_sapi_name()'=>php_sapi_name(),
00142 'TYPO3_MOD_PATH'=>TYPO3_MOD_PATH,
00143 'PATH_TRANSLATED'=>$_SERVER['PATH_TRANSLATED'],
00144 'SCRIPT_FILENAME'=>$_SERVER['SCRIPT_FILENAME']
00145 ));
00146 echo '</pre><HR>';
00147 phpinfo();
00148 exit;
00149 } else {
00150 define('PATH_typo3', $temp_path);
00151 define('PATH_typo3_mod', $temp_modPath);
00152 define('PATH_site', substr(PATH_typo3,0,-strlen(TYPO3_mainDir)));
00153 $temp_path_t3lib = @is_dir(PATH_site.'t3lib/') ? PATH_site.'t3lib/' : PATH_typo3.'t3lib/';
00154 define('PATH_t3lib', $temp_path_t3lib);
00155 define('PATH_typo3conf', PATH_site.'typo3conf/');
00156 }
00157
00158
00159
00160
00161
00162 require_once(PATH_t3lib.'class.t3lib_div.php');
00163 require_once(PATH_t3lib.'class.t3lib_extmgm.php');
00164
00165
00166
00167
00168 require(PATH_t3lib.'config_default.php');
00169 if (!defined ('TYPO3_db')) die ('The configuration file was not included.');
00170
00171 require_once(PATH_t3lib.'class.t3lib_db.php');
00172
00173 $TYPO3_DB = t3lib_div::makeInstance('t3lib_DB');
00174 $TYPO3_DB->debugOutput = $TYPO3_CONF_VARS['SYS']['sqlDebug'];
00175
00176 $CLIENT = t3lib_div::clientInfo();
00177 $PARSETIME_START = t3lib_div::milliseconds();
00178
00179
00180
00181
00182
00183
00184 require_once(PATH_t3lib . 'class.t3lib_cache.php');
00185
00186 require_once(PATH_t3lib . 'cache/class.t3lib_cache_abstractbackend.php');
00187 require_once(PATH_t3lib . 'cache/class.t3lib_cache_abstractcache.php');
00188 require_once(PATH_t3lib . 'cache/class.t3lib_cache_exception.php');
00189 require_once(PATH_t3lib . 'cache/class.t3lib_cache_factory.php');
00190 require_once(PATH_t3lib . 'cache/class.t3lib_cache_manager.php');
00191 require_once(PATH_t3lib . 'cache/class.t3lib_cache_variablecache.php');
00192
00193 require_once(PATH_t3lib . 'cache/exception/class.t3lib_cache_exception_classalreadyloaded.php');
00194 require_once(PATH_t3lib . 'cache/exception/class.t3lib_cache_exception_duplicateidentifier.php');
00195 require_once(PATH_t3lib . 'cache/exception/class.t3lib_cache_exception_invalidbackend.php');
00196 require_once(PATH_t3lib . 'cache/exception/class.t3lib_cache_exception_invalidcache.php');
00197 require_once(PATH_t3lib . 'cache/exception/class.t3lib_cache_exception_invaliddata.php');
00198 require_once(PATH_t3lib . 'cache/exception/class.t3lib_cache_exception_nosuchcache.php');
00199
00200 $typo3CacheManager = t3lib_div::makeInstance('t3lib_cache_Manager');
00201 $cacheFactoryClass = t3lib_div::makeInstanceClassName('t3lib_cache_Factory');
00202 $typo3CacheFactory = new $cacheFactoryClass($typo3CacheManager);
00203
00204 t3lib_cache::initPageCache();
00205 t3lib_cache::initPageSectionCache();
00206 t3lib_cache::initContentHashCache();
00207 unset($cacheFactoryClass);
00208
00209
00210
00211
00212 if (defined('TYPO3_cliMode') && TYPO3_cliMode && basename(PATH_thisScript)=='cli_dispatch.phpsh') {
00213
00214 $temp_cliScriptPath = array_shift($_SERVER['argv']);
00215 $temp_cliKey = array_shift($_SERVER['argv']);
00216 array_unshift($_SERVER['argv'],$temp_cliScriptPath);
00217
00218
00219 if ($temp_cliKey) {
00220 if (is_array($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys'][$temp_cliKey])) {
00221 define('TYPO3_cliInclude', t3lib_div::getFileAbsFileName($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys'][$temp_cliKey][0]));
00222 $MCONF['name'] = $TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys'][$temp_cliKey][1];
00223 } else {
00224 echo "The supplied 'cliKey' was not valid. Please use one of the available from this list:\n\n";
00225 print_r(array_keys($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys']));
00226 echo "\n";
00227 exit;
00228 }
00229 } else {
00230 echo "Please supply a 'cliKey' as first argument. The following are available:\n\n";
00231 print_r($TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys']);
00232 echo "\n";
00233 exit;
00234 }
00235 }
00236
00237
00238
00239
00240
00241
00242 require_once(PATH_t3lib.'class.t3lib_userauth.php');
00243 require_once(PATH_t3lib.'class.t3lib_userauthgroup.php');
00244 require_once(PATH_t3lib.'class.t3lib_beuserauth.php');
00245 require_once(PATH_t3lib.'class.t3lib_iconworks.php');
00246 require_once(PATH_t3lib.'class.t3lib_befunc.php');
00247 require_once(PATH_t3lib.'class.t3lib_cs.php');
00248
00249
00250
00251
00252 if ($TYPO3_CONF_VARS['BE']['adminOnly'] < 0) {
00253 header('Status: 404 Not Found');
00254 header('Location: http:
00255 exit;
00256 }
00257
00258
00259
00260
00261 if (trim($TYPO3_CONF_VARS['BE']['IPmaskList']) && !(defined('TYPO3_cliMode') && TYPO3_cliMode)) {
00262 if (!t3lib_div::cmpIP(t3lib_div::getIndpEnv('REMOTE_ADDR'), $TYPO3_CONF_VARS['BE']['IPmaskList'])) {
00263 header('Status: 404 Not Found');
00264 header('Location: http:
00265 exit;
00266 }
00267 }
00268
00269
00270
00271
00272
00273 if (intval($TYPO3_CONF_VARS['BE']['lockSSL']) && !(defined('TYPO3_cliMode') && TYPO3_cliMode)) {
00274 if(intval($TYPO3_CONF_VARS['BE']['lockSSLPort'])) {
00275 $sslPortSuffix = ':'.intval($TYPO3_CONF_VARS['BE']['lockSSLPort']);
00276 } else {
00277 $sslPortSuffix = '';
00278 }
00279 if ($TYPO3_CONF_VARS['BE']['lockSSL'] == 3) {
00280 $requestStr = substr(t3lib_div::getIndpEnv('TYPO3_REQUEST_SCRIPT'), strlen(t3lib_div::getIndpEnv('TYPO3_SITE_URL').TYPO3_mainDir));
00281 if($requestStr == 'index.php' && !t3lib_div::getIndpEnv('TYPO3_SSL')) {
00282 list(,$url) = explode(':
00283 list($server,$address) = explode('/',$url,2);
00284 header('Location: https:
00285 exit;
00286 }
00287 } elseif (!t3lib_div::getIndpEnv('TYPO3_SSL') ) {
00288 if ($TYPO3_CONF_VARS['BE']['lockSSL'] == 2) {
00289 list(,$url) = explode(':
00290 list($server,$address) = explode('/',$url,2);
00291 header('Location: https:
00292 } else {
00293 header('Status: 404 Not Found');
00294 header('Location: http:
00295 }
00296 exit;
00297 }
00298 }
00299
00300
00301
00302
00303
00304 if (isset($_POST['GLOBALS']) || isset($_GET['GLOBALS'])) die('You cannot set the GLOBALS-array from outside the script.');
00305 if (!get_magic_quotes_gpc()) {
00306 t3lib_div::addSlashesOnArray($_GET);
00307 t3lib_div::addSlashesOnArray($_POST);
00308 $HTTP_GET_VARS = $_GET;
00309 $HTTP_POST_VARS = $_POST;
00310 }
00311
00312
00313
00314
00315
00316 if (defined('TYPO3_enterInstallScript') && TYPO3_enterInstallScript) {
00317 if(!t3lib_extMgm::isLoaded('install')) {
00318 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"].');
00319 }
00320
00321 require_once(t3lib_extMgm::extPath('install').'mod/class.tx_install.php');
00322 $install_check = t3lib_div::makeInstance('tx_install');
00323 $install_check->allowUpdateLocalConf = 1;
00324 $install_check->init();
00325 exit;
00326 }
00327
00328
00329
00330
00331
00332 if ($TYPO3_DB->sql_pconnect(TYPO3_db_host, TYPO3_db_username, TYPO3_db_password)) {
00333 if (!TYPO3_db) {
00334 t3lib_BEfunc::typo3PrintError ('No database selected','Database Error');
00335 exit;
00336 } elseif (!$TYPO3_DB->sql_select_db(TYPO3_db)) {
00337 t3lib_BEfunc::typo3PrintError ('Cannot connect to the current database, "'.TYPO3_db.'"','Database Error');
00338 exit;
00339 }
00340 } else {
00341 t3lib_BEfunc::typo3PrintError ('The current username, password or host was not accepted when the connection to the database was attempted to be established!','Database Error');
00342 exit;
00343 }
00344
00345
00346
00347
00348
00349 if (!$CLIENT['BROWSER'] && !(defined('TYPO3_cliMode') && TYPO3_cliMode)) {
00350 t3lib_BEfunc::typo3PrintError ('Browser error','Your browser version looks incompatible with this TYPO3 version!',0);
00351 exit;
00352 }
00353
00354
00355
00356
00357
00358 include (TYPO3_tables_script ? PATH_typo3conf.TYPO3_tables_script : PATH_t3lib.'stddb/tables.php');
00359
00360 if ($TYPO3_LOADED_EXT['_CACHEFILE']) {
00361 include (PATH_typo3conf.$TYPO3_LOADED_EXT['_CACHEFILE'].'_ext_tables.php');
00362 } else {
00363 include (PATH_t3lib.'stddb/load_ext_tables.php');
00364 }
00365
00366 if (TYPO3_extTableDef_script) {
00367 include (PATH_typo3conf.TYPO3_extTableDef_script);
00368 }
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379 $BE_USER = t3lib_div::makeInstance('t3lib_beUserAuth');
00380 $BE_USER->warningEmail = $TYPO3_CONF_VARS['BE']['warning_email_addr'];
00381 $BE_USER->lockIP = $TYPO3_CONF_VARS['BE']['lockIP'];
00382 $BE_USER->auth_timeout_field = intval($TYPO3_CONF_VARS['BE']['sessionTimeout']);
00383 $BE_USER->OS = TYPO3_OS;
00384 $BE_USER->start();
00385 $BE_USER->checkCLIuser();
00386 $BE_USER->backendCheckLogin();
00387 $BE_USER->trackBeUser($TYPO3_CONF_VARS['BE']['trackBeUser']);
00388
00389
00390 $WEBMOUNTS = $BE_USER->returnWebmounts();
00391 $FILEMOUNTS = $BE_USER->returnFilemounts();
00392
00393
00394
00395
00396 require_once(PATH_typo3.'sysext/lang/lang.php');
00397 $GLOBALS['LANG'] = t3lib_div::makeInstance('language');
00398 $GLOBALS['LANG']->init($BE_USER->uc['lang']);
00399
00400
00401
00402
00403
00404 if (defined('TYPO3_cliMode') && TYPO3_cliMode) {
00405
00406 if (!strcmp($_SERVER['argv'][1],'status')) {
00407 echo "Status of TYPO3 CLI script:\n\n";
00408 echo "Username [uid]: ".$BE_USER->user['username']." [".$BE_USER->user['uid']."]\n";
00409 echo "Database: ".TYPO3_db."\n";
00410 echo "PATH_site: ".PATH_site."\n";
00411 echo "\n";
00412 exit;
00413 }
00414 }
00415
00416
00417
00418
00419 ob_clean();
00420 if (extension_loaded('zlib') && $TYPO3_CONF_VARS['BE']['compressionLevel']) {
00421 if (t3lib_div::testInt($TYPO3_CONF_VARS['BE']['compressionLevel'])) {
00422 @ini_set('zlib.output_compression_level', $TYPO3_CONF_VARS['BE']['compressionLevel']);
00423 }
00424 ob_start('ob_gzhandler');
00425 }
00426
00427 ?>