This latest null version Redis Cache pro 1.14.3 from another trusted site, working for me
guys, this real work.
1). If not work go to /wp-content/plugins/redis-cache-pro/src/licence.php
and change in strings 134 - 175 return $this->state === self::Valid;
like this
2). Than replace in string 204 text
return (object) [
'plan' => $this->plan,
'state' => $this->state,
'token' => $this->token,
'organization' => $this->organization,
'last_check' => $this->last_check,
'valid_as_of' => $this->valid_as_of,
this text
return (object) [
'plan' => $this->plan,
'state' => 'valid',
'token' => $this->token,
'organization' => 'organization',
'last_check' => current_time('timestamp'),
'valid_as_of' => current_time('timestamp'),
3). in wp-config write this
define('WP_REDIS_CONFIG', [
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'maxttl' => 86400 * 7,
'timeout' => 1.0,
'read_timeout' => 1.0,
'split_alloptions' => true,
'debug' => false,
]);
define('WP_REDIS_DISABLED', false);
4). Copy file object-cache.php from
/wp-content/plugins/redis-cache-pro/stubs/ to
/wp-content/
Go to dashboard, refresh page, or relogin and press activate button in wiget
Result