Closed rr-it closed 3 years ago
Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1355142232: The ColumnMap for property "usergroup" of class "In2code\Luxletter\Domain\Model\User" is missing.
It's a pitty that in TYPO3 9 TypoScript is needed for the mapping configuration of the tables. And TypoScript was once made for frontend configuration and rendering. This is related to extbase and not to luxletter itself.
Possible solutions in your case:
config.tx_extbase {
persistence {
classes {
In2code\Luxletter\Domain\Model\User {
mapping {
tableName = fe_users
}
}
In2code\Luxletter\Domain\Model\Usergroup {
mapping {
tableName = fe_groups
}
}
}
}
}
In TYPO3 9 Backend I get this error on switching from the luxletter "Dashboard" tab to the "Newsletter" tab:
How to reproduce
Workaround
System