- Removed: cache backend detection, versioned keys, auto-invalidation, admin notices, WP_CLI commands, salt_keys re-salt - Kept only WP_REDIS_HOST/WP_REDIS_PORT constants (harmless) - Cache fully disabled until root cause found
18 lines
480 B
PHP
18 lines
480 B
PHP
<?php
|
||
/**
|
||
* MU-Plugin: Object Cache Bootstrap
|
||
*
|
||
* Кеширование полностью отключено — все функции закомментированы.
|
||
* Проблема с перекрёстными данными между сайтами на проде.
|
||
*
|
||
* @package Dekart
|
||
* @version 2.3
|
||
*/
|
||
|
||
if ( ! defined( 'WP_REDIS_HOST' ) ) {
|
||
define( 'WP_REDIS_HOST', '127.0.0.1' );
|
||
}
|
||
if ( ! defined( 'WP_REDIS_PORT' ) ) {
|
||
define( 'WP_REDIS_PORT', 6379 );
|
||
}
|