---
title: "TYPO3 Exception 1444996537"
manual: "TYPO3 Exceptions"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3exceptions:typo3-exception-1444996537"
source: "Exceptions/1444996537.rst"
modified: "2026-09-16T07:39:08+00:00"
---

# 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 *Troubleshooting*
> section in the menu. You can also ask questions and receive support in the
> [TYPO3 Questions category on talk.typo3.org](https://talk.typo3.org/c/typo3-questions/).
>
> To add your experience, click "Edit on GitHub" above and follow the
> ["Edit on GitHub" workflow](https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/Howto/EditOnGithub.html#docs-contribute-github-method).
> Also check out
> [our tip on Coding Style and reST](https://docs.typo3.org/permalink/t3exceptions:tip-about-rest-coding-style).

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](https://forge.typo3.org/issues/76958)

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.
