It seems we can’t find what you’re looking for. Perhaps searching can help.
Nothing Found
| Server IP : 77.37.83.237 / Your IP :
216.73.216.163 [
Web Server : LiteSpeed System : Linux nl-srv-web1124.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u964240598 ( 964240598) PHP Version : 8.2.29 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/u964240598/domains/rafikiwema.org/public_html/wp-content/mu-plugins/ |
Upload File : |
<?php
/*
* Plugin Name: Object Cache Pro (MU)
* Plugin URI: https://objectcache.pro
* Description: A business class Redis object cache backend for WordPress.
* Version: 1.21.2
* Author: Rhubarb Group
* Author URI: https://rhubarb.group
* License: Proprietary
* Requires PHP: 7.2
*/
if (defined('MWP_OBJECT_CACHE_DISABLED') && MWP_OBJECT_CACHE_DISABLED) {
return;
}
if ( getenv('MWP_OBJECT_CACHE_EXPERIMENT') !== 'true' ) {
return;
}
defined('ABSPATH') || exit;
define('RedisCachePro\Basename', basename(__FILE__));
foreach ([
defined('WP_REDIS_DIR') ? rtrim(WP_REDIS_DIR, '/') : null,
__DIR__ . '/redis-cache-pro',
__DIR__ . '/object-cache-pro',
] as $path) {
if (is_null($path)) {
continue;
}
foreach (['redis-cache-pro.php', 'object-cache-pro.php'] as $file) {
if (is_readable("{$path}/{$file}") && include_once "{$path}/{$file}") {
return;
}
}
}
error_log('objectcache.critical: Failed to locate and load Object Cache Pro plugin');
if (defined('WP_DEBUG') && WP_DEBUG) {
throw new RuntimeException('Failed to locate and load Object Cache Pro plugin');
}
Anon7 - 2022
AnonSec Team