Actions
Bug #33035
closedPATH_typo3conf
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2012-01-08
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Calling cli_dispatch.phpsh via cronjob [typo3 v 4.5.10]:
Fatal error: Uncaught exception 'Exception' with message 'localconf.php is not found!'
PATH_typo3conf: rootpathToTypor/typo3_src/typo3conf/localconf.php
Patch: typo3/init.php
180: define('PATH_t3lib', $temp_path_t3lib); // Abs. path to t3lib/ (general TYPO3 library) within the TYPO3 admin dir
+ $pathTypo3conf = PATH_site.'typo3conf/';
+ $pathTypo3conf = str_replace('/typo3_src', '', $pathTypo3conf);
+ define('PATH_typo3conf', $pathTypo3conf); // Abs. TYPO3 configuration path (local, not part of source)
- define('PATH_typo3conf', PATH_site.'typo3conf/');
Actions