Title: ex0danify's Replies | WordPress.org

---

# ex0danify

  [  ](https://wordpress.org/support/users/ex0danify/)

 *   [Profile](https://wordpress.org/support/users/ex0danify/)
 *   [Topics Started](https://wordpress.org/support/users/ex0danify/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ex0danify/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ex0danify/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ex0danify/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ex0danify/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ex0danify/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redis Object Cache] “Connection refused” (another one)](https://wordpress.org/support/topic/connection-refused-another-one/)
 *  Thread Starter [ex0danify](https://wordpress.org/support/users/ex0danify/)
 * (@ex0danify)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/connection-refused-another-one/#post-15868161)
 * Nothing unusual so far. I had to modify your script though, cause php-redis does
   not take arguments in the constructor class. I added a second line to actually
   connect to my server.
 * **Modified script:**
 *     ```
       <?php
   
       ini_set('display_errors', 1);
       error_reporting(E_ALL);
   
       $redis = new Redis();
       $redis->connect('oam-db.skyxxxxxx.com', 6379, 5.0, '', 100, 5.0);
       $redis->auth(["gaxxx", "••••••••"]);
   
       var_dump(
           $redis->ping('pong')
       );
       ```
   
 * **Result:**
 *     ```
       string(4) "pong"
       ```
   
 * **Result from your unmodified script:**
 *     ```
       PHP Fatal error:  Uncaught ArgumentCountError: Redis::__construct() expects exactly 0 arguments, 6 given in /var/www/html/skyxxxxxx.com/redis_test.php:6
       Stack trace:
       #0 /var/www/html/skyxxxxxx.com/redis_test.php(6): Redis->__construct()
       #1 {main}
         thrown in /var/www/html/skyxxxxxx.com/redis_test.php on line 6
       ```
   
 * Thanks for taking your time with me by the way!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redis Object Cache] “Connection refused” (another one)](https://wordpress.org/support/topic/connection-refused-another-one/)
 *  Thread Starter [ex0danify](https://wordpress.org/support/users/ex0danify/)
 * (@ex0danify)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/connection-refused-another-one/#post-15867975)
 * Yes,
    I can connect from my webserver to my redis database server via redis-cli:
 *     ```
       .../var/www/html/skyxxxx-xxx.com/gdb # redis-cli -h oam-db.skyxxxxxx.com -p 6379
       oam-db.skyxxxxxx.com:6379> CONFIG GET databases
       1) "databases"
       2) "16"
       oam-db.skyxxxxxx.com:6379>
       ```
   
 * Im absolutely clueless whats going wrong with wordpress here 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redis Object Cache] “Connection refused” (another one)](https://wordpress.org/support/topic/connection-refused-another-one/)
 *  Thread Starter [ex0danify](https://wordpress.org/support/users/ex0danify/)
 * (@ex0danify)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/connection-refused-another-one/#post-15867891)
 * Thanks for your response.
    I tried setting the timeouts to 30 seconds, same behavior:/
 * Any more ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shield: Blocks Bots, Protects Users, and Prevents Security Breaches] Feature: More 2FA Gateways](https://wordpress.org/support/topic/feature-more-2fa-gateways/)
 *  Thread Starter [ex0danify](https://wordpress.org/support/users/ex0danify/)
 * (@ex0danify)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/feature-more-2fa-gateways/#post-13208776)
 * Hey there Paul,
    The ones I would be interested in are 2FA via Telegram bot and
   SMS. Nextcloud offers various authentication gateways (see link above), so maybe
   it would be easy to implement this in shield security 2FA?
 * Cheers
    Lucas
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Where are ‘saved tabs’ templates stored](https://wordpress.org/support/topic/where-are-saved-tabs-templates-stored/)
 *  Thread Starter [ex0danify](https://wordpress.org/support/users/ex0danify/)
 * (@ex0danify)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/where-are-saved-tabs-templates-stored/#post-12196828)
 * First of all, thanks for your response Freddi!
 * I checked my wp_options table and indeed, there was a yikes_woo_reusable_products_tabs
   entry, except it had no data in it. I copied the data from my old database server
   to the new one, now everything works as expected.
 * Thanks for the help, I really appreciate it.
    Cheers Lucas

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