【发布时间】:2017-04-02 12:10:49
【问题描述】:
每次我点击后端的任何页面时,我都会收到 6 个 DB 错误,看起来与这个非常相似,表 lawyer 和表 student 总共有 3 个不同的 SELECT 错误:
caller TYPO3\CMS\Core\Database\DatabaseConnection::exec_SELECTquery
ERROR Table 'db_lawclinic47.tx_lcapp_domain_model_lawyer' doesn't exist
lastBuiltQuery SELECT uid FROM tx_lcapp_domain_model_lawyer
WHERE pid=24 AND tx_lcapp_domain_model_lawyer.deleted=0
AND (tx_lcapp_domain_model_lawyer.t3ver_state <= 0 OR
tx_lcapp_domain_model_lawyer.t3ver_wsid = 0) LIMIT 1
debug_backtrace require(25/typo3/sysext/recordlist/mod1/index.php),25/typo3/mod.php#32 //
TYPO3\CMS\Recordlist\RecordList->main#31 //
TYPO3\CMS\Recordlist\RecordList\AbstractDatabaseRecordList->generateList#332 //
TYPO3\CMS\Core\Database\DatabaseConnection->exec_SELECTgetSingleRow#410 //
TYPO3\CMS\Core\Database\DatabaseConnection->exec_SELECTquery#406 //
TYPO3\CMS\Core\Database\DatabaseConnection->debug#305
那些表确实不存在,因为我重命名了一些并删除了一些......而且我的网页工作正常,所以不知何故使用了这些新表,但似乎有一些旧的东西试图从旧的中选择桌子,我不知道它可能是什么以及如何找到它并摆脱它。有什么线索吗?
【问题讨论】:
标签: typo3 typo3-6.2.x