From 60a08475018a4af1f2a80ea2d1e8bc90fb95283f Mon Sep 17 00:00:00 2001 From: Dekart Deploy Bot Date: Fri, 17 Jul 2026 20:49:51 +0000 Subject: [PATCH] feat: flush-cache button auto-installs memcached drop-in - Button copies wp-content/plugins/memcached/object-cache.php to wp-content/object-cache.php if not present - Reports status: installed, failed, or plugin missing - Updated page description --- wp-content/themes/dekart/functions.php | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/dekart/functions.php b/wp-content/themes/dekart/functions.php index 994637d..71fe9d9 100644 --- a/wp-content/themes/dekart/functions.php +++ b/wp-content/themes/dekart/functions.php @@ -2323,7 +2323,8 @@ function dekart_flush_cache_page() { ?>

πŸ—„οΈ Бброс кСша

-

Полная очистка ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π½ΠΎΠ³ΠΎ кСша (Memcached/Redis), инвалидация versioned cache ΠΊΠ»ΡŽΡ‡Π΅ΠΉ, сброс Ρ‚Ρ€Π°Π½Π·ΠΈΠ΅Π½Ρ‚ΠΎΠ².

+

Полная очистка ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π½ΠΎΠ³ΠΎ кСша (Memcached/Redis), инвалидация versioned cache ΠΊΠ»ΡŽΡ‡Π΅ΠΉ, сброс Ρ‚Ρ€Π°Π½Π·ΠΈΠ΅Π½Ρ‚ΠΎΠ².

+Если drop-in Memcached Π΅Ρ‰Ρ‘ Π½Π΅ установлСн β€” ΠΊΠ½ΠΎΠΏΠΊΠ° автоматичСски скопируСт Π΅Π³ΠΎ ΠΈΠ· ΠΏΠ»Π°Π³ΠΈΠ½Π°. ΠΠΊΡ‚ΠΈΠ²ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠ»Π°Π³ΠΈΠ½ Memcached Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ.

@@ -2437,6 +2438,21 @@ function dekart_ajax_flush_cache() { $messages = array(); + // 0. Установка Memcached drop-in (Ссли Π΅Ρ‰Ρ‘ Π½Π΅ скопирован) + $source = WP_CONTENT_DIR . '/plugins/memcached/object-cache.php'; + $target = WP_CONTENT_DIR . '/object-cache.php'; + if ( ! file_exists( $target ) ) { + if ( file_exists( $source ) ) { + if ( copy( $source, $target ) ) { + $messages[] = 'drop-in installed'; + } else { + $messages[] = '⚠ drop-in copy failed (permissions?)'; + } + } else { + $messages[] = '⚠ plugin memcached not found'; + } + } + // 1. Versioned cache bump (MU-ΠΏΠ»Π°Π³ΠΈΠ½) if ( function_exists( 'my_cache_bump_version' ) ) { my_cache_bump_version();