Object Cache Pro Support Topic

GrootMade is not affiliated with Object Cache Pro and provides an open-source alternative.

:information_source: Overview

Forked from Object Cache Pro
Download :arrow_right: View on GrootMade
Original :shopping_cart: Product Page
Developer :globe_with_meridians: Official Website
Type Plugin
Version 1.25.2
Categories Backend Management Tool


:warning: Disclaimer & Legal Notice

No Affiliation: We are providing a redistributed/forked version of this Plugin in accordance with the GPL license. We are NOT affiliated with, sponsored by, or endorsed by WP, WC, Automattic Inc., or the original creators of this product.

Support Original Developers: We do not provide official support for the original product. If you require direct technical support, automatic updates, cloud-based features, or simply wish to support the original developers, we highly encourage you to purchase an official license.

DMCA Policy: GrootMade respects the intellectual property rights of others. If you believe your copyrighted work has been infringed upon, please submit a report via our DMCA Takedown Policy page.


:ring_buoy: Support & Discussion

Have a question, found a bug, or want to share how you’re using this Plugin? Drop a reply below!

To help us resolve your issue faster, please include:

  • WP version
  • PHP version
  • Object Cache Pro version you are currently using
  • Exact steps to reproduce the issue
  • Relevant error logs or screenshots

Hi support,

How to activate this object cache pro?

according to official documentation we need to put a config in wp-config.php file:

define('WP_REDIS_CONFIG', [
    'token' => '<your-license-token>',
    'host' => '127.0.0.1',
    'port' => 6379,
    'database' => 0, // change for each site
    // 'prefetch' => true,
    // 'split_alloptions' => true,
    'debug' => false,
]);

define('WP_REDIS_DISABLED', false);


But anything i put for license token, it does not accept and says: "Your license is not active"
1 Like

Version 1.25.2 has been uploaded.

The latest version of Object Cache Pro is now 1.25.2.

Use the latest version 1.25.2. Its activated.

Hi @Ryan

Thank you for the update. 50% of the problem is solved, meaning the cache is working now. But there is still the annoying license problem. It basically requires to put license token in wp-config.php file.

please refer to uploaded screenshot.

See if you could find any solution to this to show it activated and disable the warnings on WP dashboard and all pages. and bypass the wp-config license token requirement.

1 Like

@Ali_Sadeqi_HostGigz Thanks for the report, The file has been replaced now. Please reinstall and ,Add the following code in your wp-config.php before installing the plugin.

define('WP_REDIS_CONFIG', [
    'token' => 'e279430effe043b8c17d3f3c751c4c0846bc70c97f0eaaea766b4079001c',
    '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);
2 Likes