TYPO3 Exception 1534710048

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.

Exeption is thrown when click in Backend on Module "Sites"

This error happens after upgrading from TYPO3 8 or 9 or after importing a database from an older TYPO3 instance. It happens on trying to create a site configuration. The error is cause by Missing database tables

Solution:

Go to Admin Tools -> Maintenance -> Database Compare and bring the database schema up to date.

Exception is thrown when trying to edit records in BE

Error in TCA configuration

Might be caused by a TCA definition of a table other then pages using the following:

'displayCond' => 'USER:'
   . \\TYPO3\CMS\Core\Compatibility\PseudoSiteTcaDisplayCondition::class .
   '->isInPseudoSite:pages:false'

is used for records. The pseudo site check should only be used for pages. Remove or adopt display condition. Problem occurred for example in tt_address >= 5.0.0, < 5.2.0 for field slug.

The error may only occur if you edit specific records as a problem only arises if a page(!) with the uid of the record(!) does not exist.

Extension news or tt_address needs updates

Some versions of the extensions news and tt_address can cause this error on opening records like sys_category. Updating the extension to the most recent version can help. For example updating News to version 8.4.1 or newer fixes this issue.