XF 2.3 Error During XF Update: Need Help Resolving Incomplete Upgrade!

JulesR

Member
Hello everyone,

I recently updated XF from version 2.3.2 to 2.3.3 and encountered the following error. Could anyone advise me on which addon to disable or how to resolve the issue?

Your assistance would be greatly appreciated.

Thank you in advance!

Code:
Fatal error: Declaration of SV\RedisCache\SymfonyCache\Redis::setLogger(Psr\Log\LoggerInterface $logger) must be compatible with Psr\Log\LoggerAwareInterface::setLogger(Psr\Log\LoggerInterface $logger): void in /home/almalinux/public_html/xenforo/src/addons/SV/RedisCache/SymfonyCache/Redis.php on line 397
 
XenForo 2.3.3 does not change the Psr\Log\LoggerAwareInterface interface. Another add-on is badly pulling in a new version unrelated to my add-on.

You would need to grab the src/addons folder for LoggerAwareInterface and see which is re-defining it.
 
Thank you all! Every day I learn something new.

I added this line to the config.php file and successfully updated it.

Afterward, I removed it again.

Everything seems fine now.

PHP:
$config['enableListeners'] = false;
 
Back
Top Bottom