run:R W Run
DIR
2026-03-24 15:51:27
R W Run
DIR
2025-12-13 10:17:19
R W Run
DIR
2025-12-13 10:14:49
R W Run
DIR
2024-09-11 16:45:50
R W Run
DIR
2026-01-22 01:53:59
R W Run
DIR
2026-04-17 06:08:00
R W Run
DIR
2026-01-22 01:52:55
R W Run
DIR
2026-04-17 06:08:03
R W Run
DIR
2026-04-20 06:37:51
R W Run
DIR
2026-01-22 01:53:49
R W Run
DIR
2026-01-23 08:16:02
R W Run
0 By
2026-04-07 00:47:27
R W Run
0 By
2026-02-05 04:07:21
R W Run
0 By
2024-10-24 20:39:28
R W Run
692 By
2026-03-24 15:50:30
R W Run
1.83 KB
2026-04-09 18:51:36
R W Run
error_log
📄object-cache.php
1<?php
2/*
3 * Plugin Name: Object Cache Pro (Drop-in)
4 * Plugin URI: https://objectcache.pro
5 * Description: A business class Redis object cache backend for WordPress.
6 * Version: 1.25.3
7 * Author: Rhubarb Group
8 * Author URI: https://rhubarb.group
9 * License: Proprietary
10 * Requires PHP: 7.2
11 */
12
13defined('ABSPATH') || exit;
14
15if (version_compare(PHP_VERSION, '7.2', '<')) {
16 return require_once ABSPATH . WPINC . '/cache.php';
17}
18
19if (defined('WP_SETUP_CONFIG')) {
20 return require_once ABSPATH . WPINC . '/cache.php';
21}
22
23if (defined('WP_REDIS_DISABLED') && WP_REDIS_DISABLED) {
24 return;
25}
26
27if (! empty(getenv('WP_REDIS_DISABLED'))) {
28 return;
29}
30
31foreach ([
32 defined('WP_REDIS_DIR') ? WP_REDIS_DIR : null,
33
34 // Redis Cache Pro
35 defined('WPMU_PLUGIN_DIR') ? WPMU_PLUGIN_DIR . '/redis-cache-pro' : null,
36 defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/mu-plugins/redis-cache-pro' : null,
37 defined('WP_PLUGIN_DIR') ? WP_PLUGIN_DIR . '/redis-cache-pro' : null,
38 defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/plugins/redis-cache-pro' : null,
39
40 // Object Cache Pro
41 defined('WPMU_PLUGIN_DIR') ? WPMU_PLUGIN_DIR . '/object-cache-pro' : null,
42 defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/mu-plugins/object-cache-pro' : null,
43 defined('WP_PLUGIN_DIR') ? WP_PLUGIN_DIR . '/object-cache-pro' : null,
44 defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/plugins/object-cache-pro' : null,
45] as $path) {
46 if ($path === null || ! is_readable("{$path}/api.php")) {
47 continue;
48 }
49
50 if (include_once "{$path}/api.php") {
51 return true;
52 }
53}
54
55error_log('objectcache.critical: Failed to locate and load object cache API');
56
57$GLOBALS['wp_object_cache_errors'] = ['Failed to locate and load object cache API'];
58
59if (defined('WP_DEBUG') && WP_DEBUG) {
60 throw new RuntimeException('Failed to locate and load object cache API');
61}
62