TYPO3 Exception 1480765571
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 Troubleshooting section in the menu. You can also ask questions and receive support in the TYPO3 Questions category on talk.typo3.org.
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.
Data structure identifier must be set, typically by executing TcaFlexPrepare
If you encounter this error during FlexForm integration:
Data structure identifier must be set, typically by executing TcaFlexPrepare data provider before
it means that your FlexForm's XML structure is defective (broken, has errors, does not parse properly).
Missing prefix "FILE:"
It occurs, for example, when you try to add a FlexForm file to a CE or plugin,
but forget the prefix FILE:
:
/**
* WRONG WAY to add a FlexForm file to a content element
*/
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue(
'*',
'EXT:my_extension/Resources/Private/FlexForm/MyFlexForm.xml',
'textpic'
);
/**
* CORRECT WAY to add a FlexForm file to a content element
*/
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue(
'*',
'FILE:EXT:my_extension/Resources/Private/FlexForm/MyFlexForm.xml',
'textpic'
);