TYPO3 Exception 1381512761¶
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.
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.
Invalid value “…” for enumeration “…” in v12¶
Invalid value “-1” for enumeration “TYPO3CMSCoreVersioningVersionState”¶
The value -1
is no longer valid for VersionState.
The corresponding rows should have been updated within the database by an Upgrade Wizard “WorkspaceNewPlaceholderRemovalMigration”.
More information is available at: https://forge.typo3.org/issues/99401#note-3
TYPO3 6.2.x and higher (after update from 6.1 or lower)¶
Error occurred in an extension after migration 6.1 -> 6.2 due to wrong
(invalid) field data types in the TCA ('type' => 'date',
) -> 'date'
is an
invalid type. It seems, v6.1 didn’t care very much about invalid types,
but 6.2 does. Changing the datatype to 'type' => 'input', 'eval' => 'datetime'
solved the problem.
After Upgrade to v11 TCA config internal_type => ‘file_reference’ make problem¶
After an update to TYPO3 v11 from a very old v6.2 installation, the TCA config for TCA type group
is deprecated. You cannot use internal_type => 'file_reference'
or internal_type => 'file'
.
Migrate your old TCA to new one using type inline
as fileReferences
.