I recently tried to create an FAQ Page with the TYPO3 extension jpfaq.
I did set up everything as it was described in the manual. But for some reason when i preview the page, it shows a bunch of different error. For example:
TYPO3\CMS\Extbase\Persistence\Generic\Storage\Exception\SqlErrorException
Table 'xxx_typo_dev.tx_jpfaq_domain_model_ttcontent' doesn't exist
When I "unbind" the FAQ database I created it shows me the correct FAQ page (just without the questions and answers). So there might be a problem with the database?
Cleared cache. Deleted and installed the extension again. Didn't help.
Sounds like the you need to fix the
Database Structure.Normally the
Database Structureis fixed when you install new extensions in theExtensionsmodule.If you use
Composer Modethe installation is done with composer and you need to fix it by hand.This can be done in the InstallTool / Maintenance Module:
Analyze Database Structure.Or you use the commandline:
vendor/helhum/typo3-console/typo3cms database:updateschema(don't forget to usecomposer require helhum/typo3-console)