ex0danify
Forum Replies Created
-
Forum: Plugins
In reply to: [Redis Object Cache] “Connection refused” (another one)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 6Thanks for taking your time with me by the way!
Forum: Plugins
In reply to: [Redis Object Cache] “Connection refused” (another one)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
In reply to: [Redis Object Cache] “Connection refused” (another one)Thanks for your response.
I tried setting the timeouts to 30 seconds, same behavior :/Any more ideas?
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
LucasForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Where are ‘saved tabs’ templates storedFirst 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