TYPO3 8.7.2中的计划程序错误

TYPO3 8.7.2中的计划程序错误,typo3,typo3-8.x,Typo3,Typo3 8.x,我正在尝试为调度程序设置cronjob,但对于不存在的DB表,会出现错误 通过cli_dispatch.phpsh /usr/local/bin/php_cli /home/www/MyAccount/html/typo3/typo3/cli_dispatch.phpsh scheduler Oops, an error occurred: An exception occurred while executing 'SELECT `content` FROM `cf_cache_hash`

我正在尝试为调度程序设置cronjob,但对于不存在的DB表,会出现错误

通过cli_dispatch.phpsh

/usr/local/bin/php_cli /home/www/MyAccount/html/typo3/typo3/cli_dispatch.phpsh scheduler

Oops, an error occurred: An exception occurred while executing 'SELECT `content` FROM `cf_cache_hash` WHERE (`identifier` = ?) AND (`expires` >= ?)' with params ["22b1624a39d90c5db056873686cabf4f", 1498474993]:

Table 'usr_MyAccount_1.cf_cache_hash' doesn't exist
通过Symfony命令

/usr/local/bin/php_cli /home/www/MyAccount/html/typo3/typo3/sysext/core/bin/typo3 scheduler:run

Uncaught TYPO3 Exception An exception occurred while executing 'SELECT `content` FROM `cf_extbase_object` WHERE (`identifier` = ?) AND (`expires` >= ?)' with params ["3bcc835c5d8d7866a0ce2dc41464b9a8", 1498475122]:

Table 'usr_MyAccount_1.cf_extbase_object' doesn't exist
thrown in file /html/typo3/typo3_src-8.7.2/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php
in line 53

“数据库分析器”说一切正常。我遗漏了什么吗?

问题是APCu缓存。由于APCu不能与CLI一起使用,因此必须对CLI命令禁用它。到目前为止,还没有解决这个问题的好办法。见: