TYPO3 Exception 1444996537

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.

This error happens since TYPO3 7.6 if your extension has defined the TCA in the file Configuration/TCA/my_extension_table.php and when "'displayCond' => 'EXT:foreign_extension:LOADED:true'" is used.

see Bug #76958: displayCond LOADED does not check the loaded extension

You must move the the column with the condition into the folder Configuration/TCA/Overrides of your extension (my_extension) or of the foreign extension (foreign_extension) or of a third connector extension like my_extension_connector. There you must use condition

if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded('foreign_extension')) {
   $temporaryColumns = array (
     'my_field_for_foreign_extension' => array (

in the file Configuration/TCA/Overrides/my_extension_table.php around the part where the column is defined.