TYPO3 Exception 1206031879

Invalid configuration type

It is explicit enough to understand that the TYPE can't be found, knowing you have three choices, all set in \\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface

  • 'Framework', which is set by CONFIGURATION_TYPE_FRAMEWORK
  • 'Settings', which is set by CONFIGURATION_TYPE_SETTINGS
  • 'FullTypoScript', which is set by CONFIGURATION_TYPE_FULL_TYPOSCRIPT

First, be sure you use only one of these three possibilities.

Then be sure you call the constant without quotes :

\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS
Copied!

And not

'\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS'
Copied!