diegpl
Forum Replies Created
-
Forum: Plugins
In reply to: [Redis Object Cache] Error after upgrading to version 1.5.0That is what appears:
Status: Disabled
Client: pecl
Drop-in: Invalid
Redis Extension: 5.0.2
Predis Client: 1.1.1
PHP Version: 7.2.23
Multisite: Yes
WP_REDIS_CLIENT: “pecl”
WP_REDIS_HOST: “localhost”
WP_REDIS_PORT: “6379”
WP_REDIS_MAXTTL: “86400”
Dropins:
– advanced-cache.php v byBut even after I downgraded the plugin and tried to activate it, it still crashes the database, I get my sites back just after to rename object-cache.php file.
Forum: Plugins
In reply to: [Redis Object Cache] Error after upgrading to version 1.5.0I had this database problem even before this upgrade, but then I got a backup and installed again and it worked, but I was not able to fix it after the error happened. After update the plugin I had the same issue and I am wondering if I loose my work day today or not.
Is it possible to maybe delete something on the DB to get it working again? Tks!Forum: Plugins
In reply to: [W3 Total Cache] How to cache for logged users letting top bar?Ok, but with this cookie group I would get just one cache for all the specific group? I am askgin that, because all the other cache plugins I saw generates a specific cache for each logged user, which I don`t think is good either. I would like just one cache for all the logged users, respecting ajax calls and Woocommerce shopping cart navigation. Will it be possible activating that? Thank you! 😉
Forum: Plugins
In reply to: [W3 Total Cache] How to cache for logged users letting top bar?What you mean by “multiple forms”? Would it be like a Fragment Cache of the contect below the top bar? Or would the cache be inside something like an iframe? Sorry, but I did not get what would be the behavior.
Forum: Plugins
In reply to: [W3 Total Cache] How to cache for logged users letting top bar?Yes, is that possible? Tks! 😉
Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] CSS issue on the last version?If you check the add button on this page https://knott.com.br/reboque/reboque-carretinha-basculante-trailer-bomba-eletrica/ you can see it calls the code from this file: woo-rfq-for-woocommerce/gpls_assets/css/gpls_wh.css?x79017
I have set another one on top of it, that is why the button is appearing. Did you see? Thank you! 😉Forum: Plugins
In reply to: [Redis Object Cache] WP_REDIS_CLIENT on wp-config is not working?The problem is solved. I was not installing it referencing the php version. That is the right code: php72-php-pecl-redis5
Closing this thread now. Thank you very much! 😉
Forum: Plugins
In reply to: [Redis Object Cache] WP_REDIS_CLIENT on wp-config is not working?But is there a way I can know if the problem is not with the plugin? Because this code is running alright at phpredis folder:
$redis = new Redis();
$redis->connect(‘127.0.0.1’, 6379);
echo “Connection to server sucessfully”;
//check whether server is running or not
echo “Server is running: “.$redis->ping();
if ( class_exists( ‘Redis’ ) ) {echo “versao “.phpversion( ‘redis’ );
//echo $redis->get_redis_client_name();
} else {
echo “sem classe redis”;
}- This reply was modified 6 years, 7 months ago by diegpl.
Forum: Plugins
In reply to: [Redis Object Cache] WP_REDIS_CLIENT on wp-config is not working?I just set it as uppercase and inserted it above all the others:
define(‘WP_REDIS_CLIENT’, ‘PECL’);
define(‘WP_REDIS_HOST’, ‘xxx’);
define(‘WP_REDIS_PORT’, ‘xxx’);
define(‘WP_REDIS_PASSWORD’, ‘xxx’);
define(‘WP_REDIS_MAXTTL’, ‘86400’);But it still does not work. Any other idea? Or did not I understand you alright? Tks!
Forum: Plugins
In reply to: [Redis Object Cache] WP_REDIS_CLIENT on wp-config is not working?If I disable the object cache, plugin shows client as pecl, but when I activate it, Predis come back as client. PHP Extension still shows as “not found” even with “php -m” showing it is there.
Forum: Plugins
In reply to: [Redis Object Cache] How to install phpredisWell, maybe now I am in a point that is more related to the plugin then: I inserted redis.ini in the below folders:
/etc/opt/remi/php72/php.d/50-redis.ini
/etc/php-zts.d/50-redis.ini
/etc/php.d/50-redis.ini
/root/phpredis/rpm/50-redis.iniNeeded to set a prefix number because ppl said it is supposed to run after json module, which is 20-json.ini.
When I run php -m redis module now is showing there, but the plugin still does not recognize it. Do you, or someone else that could be reading this, know tell me why?
Thank you very much! 😉
Forum: Plugins
In reply to: [Redis Object Cache] How to install phpredisI`m actually my “web hosting company” and I do not get why is not these questions related to the plugin, since they are needed to make it run for complete. As said here too: https://wordpress.org/support/topic/redis-extension-not-found/
Forum: Plugins
In reply to: [Redis Object Cache] How to install phpredisNow I reinstalled PHPRedis using
yum install php-pecl-redis
at this tutorial https://github.com/phpredis/phpredis/blob/develop/INSTALL.markdown and restarted php usingsudo systemctl restart php72-php-fpm.servicewith no success either.Forum: Plugins
In reply to: [Redis Object Cache] How to install phpredisI`m wondering if my mistake is to not have installed this dependency as https://www.techandme.se/install-redis-cache-on-ubuntu-server-with-php-7-and-nextcloud/ tutorial recommends:
$~: sudo apt-get install php7.0-dev -yBut I this that
sudo apt-get -y install gcc make autoconf libc-dev pkg-configrequested in the first tutorial maybe is that.- This reply was modified 6 years, 7 months ago by diegpl.
Forum: Plugins
In reply to: [Redis Object Cache] How to install phpredisI also tried
sudo bash -c "echo extension=redis.so > /opt/remi/php72/root/usr/share/ghostscript/conf.d/redis.ini"with no success.