Project

General

Profile

Bug #85825

Updated by Sergio Catalá over 5 years ago

TYPO3 8.7.20 8.7.18 

 After adding this code over Configuration/TCA/Overrides/pages.php to register my own page TSconfig: 

 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::registerPageTSConfigFile( 
     'user_boilerplate', 
     'Configuration/TSconfig/page.tsconfig', 
     'Boilerplate Settings' 
 ); 


 If the my page.tsconfig content of the file Configuration/TSconfig/page.tsconfig uses relative paths is like this: 

 <INCLUDE_TYPOSCRIPT: source="DIR:./Page" extensions="tsconfig"> 

 Then the TSconfig is not loaded in backend. 

 I've always used relative paths to include TypoScript. 

 If I change the content to an absolute path: of page.tsconfig to: 

 <INCLUDE_TYPOSCRIPT: source="DIR:EXT:user_boilerplate/Configuration/TSconfig/Page" extensions="tsconfig"> 

 then the TSconfig is loaded. 

 Can anyone confirm this behaviour and fix that if it proceeds?

Back