[TYPO3-workspace] Current workspace trunk broken?

Philipp Gampe typo3.lists at philippgampe.info
Tue Jun 28 21:54:35 CEST 2011


François Suter wrote:

> Hi,
> 
>> Just when you think you've cleared all the cache, you realize you
>> haven't: I hadn't taken into account the recent changes to the caching
>> framework. So the error went away, but a new one appeared:
>>
>> Fatal error: Class 'Tx_Extbase_Service_TypoScriptService' not found in
>> /usr/local/src/typo3/Core/t3lib/class.t3lib_div.php on line 5066
>>
>> I'm up to date on TYPO3 trunk, Extbase trunk and workspaces trunk.
> 
> I can't work myself out of this one, no time to dig sufficiently. I
> submitted my patch anyway, there's no reason why it shouldn't be working
> with trunk. Somebody luckier should be able to run it.

This happens because some classes are not autoloaded.

diff --git a/ext_autoload.php b/ext_autoload.php
index 19aa74d..5ae0acc 100644
--- a/ext_autoload.php
+++ b/ext_autoload.php
@@ -202,6 +202,8 @@ return array(
        'tx_extbase_security_exception_invalidargumentforrequesthashgeneration' 
=> $extensionClassesPath . 'Security/Exc
        'tx_extbase_security_exception_syntacticallywrongrequesthash' => 
$extensionClassesPath . 'Security/Exception/Syn
        'tx_extbase_service_flexformservice' => $extensionClassesPath . 
'Service/FlexFormService.php',
+       'tx_extbase_service_typoscriptservice' => $extensionClassesPath . 
'Service/TypoScriptService.php',
+       'tx_extbase_service_extensionservice' => $extensionClassesPath . 
'Service/ExtensionService.php',
        'tx_extbase_utility_arrays' => $extensionClassesPath . 
'Utility/Arrays.php',
        'tx_extbase_utility_cache' => $extensionClassesPath . 
'Utility/Cache.php',
        'tx_extbase_utility_classloader' => $extensionClassesPath . 
'Utility/ClassLoader.php',
@@ -244,4 +246,4 @@ return array(
        'tx_extbase_basetestcase' => $extensionClassesPath . 
'../Tests/BaseTestCase.php',
        'tx_extbase_tests_unit_basetestcase' => $extensionClassesPath . 
'../Tests/Unit/BaseTestCase.php',
 );
-?>
\ No newline at end of file
+?>


see also attached.

Best regards
-- 
Philipp Gampe


More information about the TYPO3-team-workspace mailing list