TYPO3 / bootstrap package trouble in update wizard

Viewed 26

I have a TYPO3 Error in the update wizard. Seems to say that there is some trouble with the bootstrap package

Call to undefined method Doctrine\DBAL\Driver\Mysqli\MysqliStatement::fetchOne() in ../typo3conf/ext/bootstrap_package/Classes/Updates/AccordionMediaOrientUpdate.php line 99 ) ) ) ->execute(); return (bool) $result->fetchOne(); }

TYPO3 10.4.32 / bootstrap package 12.4

Some help would be great!

1 Answers

It seems that you are on an older Doctrine version, that does not know the fetchOne() method yet. Try to do a composer update to get the latest matching Doctrine for your TYPO3 installation.

Related