TYPO3 Exception 1540246570

Note

Below, the TYPO3 community may have provided additional information or solutions for this exception. However, these may or may not apply to your particular case. If you can provide more information, you should come back here and add your experience and solution steps to this issue once you have resolved it.

General TYPO3 troubleshooting tips can be found in the section "Troubleshooting" of the menu, and live support is available in the TYPO3 Slack channel #typo3-cms. (See How to get your TYPO3 Slack account.)

To add your experience, click "Edit on GitHub" above and follow the "Edit on GitHub" workflow. Also check out our tip on Coding Style and reST.

It happens when i create a content element of type Plugin and forget to choose the specific Plugin from the tab 'Plug-in'


Occures if you pass the wrong pluginType to TYPO3CMSExtbaseUtilityExtensionUtility::configurePlugin(...)

You have removed Typoscript by Conditon?

f.e. you have used this:

[globalVar = TSFE:id = {$noLoginPluginOnPids}]

lib.login >

[global]

This will lead to this Exception since TYPO3 LTS 9 if you use something like the next line in your Fluid Template <f:cObject typoscriptObjectPath="lib.login" />

Solution

change typoscript to:

[globalVar = TSFE:id = {$noLoginPluginOnPids}]

lib.login =

[global]

Exception is thrown in a fluid template using a view helper

Might be caused by a translation not found in Fluid:

<f:translate key = "Button_Helpful" />

If translation key is not found in the default language file, this error will be thrown.

Solution

add a default text to the tag and also fix the language file.

The error does not occur when you use the Fluid lanuage tag with a path:

<f:translate key = "LLL:EXT:yourExtension/Resources/Private/Language/locallang.xml:Button_Helpful" />