Project

General

Profile

Bug #96985

Updated by Chris Müller almost 3 years ago

Please close this issue. I installed the current version of typo3/cms-composer-installers v4 (d9b4e06) on a TYPO3 v11.5.6. 

 In the installation I have custom extensions which are installed correctly into the vendor folder. 

 But: ext_localconf.php and ext_tables.php are not considered. I looked into var/cache/code/core/ext_localconf_*.php and var/cache/code/core/ext_tables_*.php and only the ext_[localconf|tables].php files from the core extension are listed there. 

 So it seems that 3rd party extensions are not taken into account. 


 **Addition**: It seems that at least also Icons.php and backend modules are also not considered. Maybe other files also. So it looks like a generic problem. 

 **Addition 2:** Okay, seems I found the reason. The extensions are local extensions which are symlinked by composer. In ExtensionManagementUtility::createExtLocalconfCacheEntry() the path for the ext_localconf.php (which is correct) is checked. But file_exists() returns false 

 **Addition 3:** Looks like something odd in my ddev box. The symlink path is not correct, one ".." to many.

Back