Redis Object Cache Pro By ObjectCache

Redis Object Cache Pro By ObjectCache v1.23.1 Nulled

No permission to download

sonn1220

Active member
May 4, 2022
331
60
28
Use the recommended configuration:

PHP:
define('WP_REDIS_CONFIG', [
    'token' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
    'host' => '127.0.0.1',
    'port' => 6379,
    'database' => 0, // change for each site
    'maxttl' => 3600 * 24 * 7, // 7 days
    'timeout' => 2.5,
    'read_timeout' => 2.5,
    'split_alloptions' => true,
    'debug' => false,
]);

define('WP_REDIS_DISABLED', false);

You can find it on the overview page of this resource. Replace token with the one you are using (random 60 chars length)
An object cache error has occurred:

  • Failed to initialize object cache: Connection refused
 

sonn1220

Active member
May 4, 2022
331
60
28
[11-Sep-2022 21:08:06 UTC] objectcache.critical: Failed to initialize object cache: Connection refused
[11-Sep-2022 21:08:06 UTC] objectcache.info: Failing over to in-memory object cache
[11-Sep-2022 21:08:06 UTC] objectcache.critical: Failed to initialize object cache: Connection refused
What can I do with these logs? @Legolas @nwrk

 

Legolas

Active member
Trusted Uploader
Feb 26, 2019
175
216
43
[11-Sep-2022 21:08:06 UTC] objectcache.critical: Failed to initialize object cache: Connection refused
[11-Sep-2022 21:08:06 UTC] objectcache.info: Failing over to in-memory object cache
[11-Sep-2022 21:08:06 UTC] objectcache.critical: Failed to initialize object cache: Connection refused
What can I do with these logs? @Legolas @nwrk

You have a problem with your redis setup. It's not an issue with this plugin. Good luck
 

sonn1220

Active member
May 4, 2022
331
60
28
inside this file on line 56 appears this information: throw new RuntimeException('Failed to locate and load object cache API');
Can anyone who has experienced this and has a solution help me?
 

Legolas

Active member
Trusted Uploader
Feb 26, 2019
175
216
43
inside this file on line 56 appears this information: throw new RuntimeException('Failed to locate and load object cache API');
Can anyone who has experienced this and has a solution help me?
You already have your answer. The problem IS NOT inside the plugin where you are looking for. Your problem is with your redis server. If it's a shared hosting you will need help from them. If it's your own VPS then you will need an skilled technician who solves the problem verifying the redis configuration and PHP extensions being loaded.
 
  • Like
Reactions: sonn1220

sonn1220

Active member
May 4, 2022
331
60
28
You already have your answer. The problem IS NOT inside the plugin where you are looking for. Your problem is with your redis server. If it's a shared hosting you will need help from them. If it's your own VPS then you will need an skilled technician who solves the problem verifying the redis configuration and PHP extensions being loaded.
Thanks, it's dedicated, I'll ask support
 

skypeleft

Active member
Aug 10, 2019
401
71
28
Hi, how to fix this error

1662959990727.png
define('WP_REDIS_CONFIG', [
'token' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'maxttl' => 3600 * 24 * 7, // 7 days
'timeout' => 2.5,
'read_timeout' => 2.5,
'split_alloptions' => true,
'debug' => false,
]);

define('WP_REDIS_DISABLED', false);
 

sakafa

New member
May 10, 2022
5
1
3
i put the code this code:


define('WP_REDIS_CONFIG', [
'token' => 'Babiato',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'maxttl' => 3600 * 24 * 7, // 7 days
'timeout' => 1.0,
'read_timeout' => 1.0,
'split_alloptions' => true,
'debug' => false,
]);

define('WP_REDIS_DISABLED', false);

also, try this code:
define('WP_REDIS_CONFIG', [
'token' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'maxttl' => 3600 * 24 * 7, // 7 days
'timeout' => 2.5,
'read_timeout' => 2.5,
'split_alloptions' => true,
'debug' => false,
]);

define('WP_REDIS_DISABLED', false);


still, I'm getting this message

An object cache error has occurred:

  • Failed to initialize object cache: License `token` must be a 60 characters long string
 

Attachments

  • 1.jpg
    1.jpg
    43.8 KB · Views: 15

hellearth

Active member
Aug 19, 2020
365
113
43
i put the code this code:


define('WP_REDIS_CONFIG', [
'token' => 'Babiato',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'maxttl' => 3600 * 24 * 7, // 7 days
'timeout' => 1.0,
'read_timeout' => 1.0,
'split_alloptions' => true,
'debug' => false,
]);

define('WP_REDIS_DISABLED', false);

also, try this code:
define('WP_REDIS_CONFIG', [
'token' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'maxttl' => 3600 * 24 * 7, // 7 days
'timeout' => 2.5,
'read_timeout' => 2.5,
'split_alloptions' => true,
'debug' => false,
]);

define('WP_REDIS_DISABLED', false);


still, I'm getting this message

An object cache error has occurred:

  • Failed to initialize object cache: License `token` must be a 60 characters long string
Try replacing this line:

'token' => "Vwwz2Xjf3RLsjJlBxBpLJbJcIRoi9rfszjmOqecMzQ1RB3K8jYQAOMkrCFDR",
 

olalavui

Well-known member
May 6, 2020
191
391
63
Cloud
buithanhtung.com
You can test Redis working before use plugins

create file redischeck.php on root folder of your website with content below:
PHP:
<?php
   //Connecting to Redis server on localhost
   $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();
?>
Open brower, type: yourdomain/redischeck.php
If result is:
Code:
Connection to server sucessfully
Server is running: PONG
Redis is working normally. And can use plugin on this page.
If not, please install redis before / or contact Hosting and Technical Support.
 
  • Like
Reactions: NA.VU

zane09

Member
Apr 25, 2020
71
20
8
I have 35 messages and 2 resources.. had more messages before babiato.tech crashed
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu