• Resolved b1b3r0n

    (@b1b3r0n)


    Problem with redis and object-cache.php after new update doesn`t allow me to use it.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Mustafa Uysal

    (@m_uysl)

    @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 );

    Thread Starter b1b3r0n

    (@b1b3r0n)

    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

    Plugin Author Mustafa Uysal

    (@m_uysl)

    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
     );
    
    Thread Starter b1b3r0n

    (@b1b3r0n)

    Thank you very much for your coorperation. It was very fast and sustainable.

    Kind Regards,
    B

    Plugin Author Mustafa Uysal

    (@m_uysl)

    You’re welcome, @b1b3r0n! Happy to help. If Powered Cache has been working well for you, a quick review would be much appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Problem with new update’ is closed to new replies.