@b1b3r0n do you have a screenshot?
If you have WP_REDIS_USE_RELAY in your configuration file, please remove it or set it to false like: define( 'WP_REDIS_USE_RELAY', false );
I have only this:
/* Redis Object Cache configuration */
define( ‘WP_REDIS_HOST’, ‘127.0.0.1’ );
define( ‘WP_REDIS_PORT’, ‘13313’ );
till now is working great. I try to reinstall plug-in also delete object-cache.php. But nothing and now I restore everething. What do you suggest to add this line above in wp-config.php
No, it looks like you’re using a different Redis drop-in—specifically https://github.com/rhubarbgroup/redis-cache. If you selected Redis from the Powered Cache settings, it likely overwrote your existing object-cache.php file. The correct configuration format for Powered Cache is as follows: (add it to wp-config.php file)
$redis_server = array(
'host' => '127.0.0.1',
'port' => 13313
);
Thank you very much for your coorperation. It was very fast and sustainable.
Kind Regards,
B
You’re welcome, @b1b3r0n! Happy to help. If Powered Cache has been working well for you, a quick review would be much appreciated!