TYPO3 Exception 1661540376
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.
TYPO3 [version] - [date of report]
Installation Overview
TYPO3 14.3 with not acitvated extension tt_board and records of it. The routing contains a config.yaml which contains tt_board records:
TtBoardList:
type: Plugin
routePath: '/boardl/{uid}'
namespace: tt_board_list
aspects:
uid:
type: PersistedAliasMapper
tableName: tt_board
routeFieldName: slug
The Issue
The front end with speaking url shows this exception:
Warning
#1661540376 TYPO3\CMS\Core\Schema\Exception\UndefinedSchemaException No TCA schema exists for the name "tt_board".
/path/typo3_src-14.3.0/typo3/sysext/core/Classes/Schema/SchemaCollection.php:76:
public function get(string $schemaName): TcaSchema
{
if (!$this->has($schemaName)) {
throw new UndefinedSchemaException('No TCA schema exists for the name "' . $schemaName . '".', 1661540376);
}
if (str_contains($schemaName, '.')) {
[$mainSchema, $subSchema] = explode('.', $schemaName, 2);
return $this->get($mainSchema)->getSubSchema($subSchema);
Solution
Activate the extension tt_board which contains the TCA for the table tt_board.