Created
July 26, 2024 08:54
-
-
Save arwinvdv/fd99d34f8704a8606cfefc6957215efe to your computer and use it in GitHub Desktop.
Change Breeze cache TTL configuration with ManageWP snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Its normal that this script gives some mkdir chmod and unlink errors | |
// Load WordPress environment. | |
require 'wp-load.php'; | |
require 'wp-content/plugins/breeze/breeze.php'; | |
function md_change_breeze_settings() | |
{ | |
echo 'Start!'; | |
$basic = breeze_get_option('basic_settings'); | |
if (empty($basic)) { | |
echo 'no config found'; | |
return; | |
} | |
$basic['breeze-ttl'] = 480; | |
$basic['breeze-b-ttl'] = 480; | |
breeze_update_option('basic_settings', $basic, true); | |
if (!class_exists('Breeze_ConfigCache')) { | |
require_once('wp-content/plugins/breeze/inc/cache/config-cache.php'); | |
} | |
// Storage information to cache pages | |
Breeze_ConfigCache::factory()->write(); | |
Breeze_ConfigCache::factory()->write_config_cache(); | |
// Turn on WP_CACHE to support advanced-cache file | |
if ($basic['breeze-active'] == '1') { | |
Breeze_ConfigCache::factory()->toggle_caching(true); | |
} else { | |
Breeze_ConfigCache::factory()->toggle_caching(false); | |
} | |
if (!class_exists('Breeze_PurgeCacheTime')) { | |
require_once('wp-content/plugins/breeze/inc/cache/purge-per-time.php'); | |
} | |
// Reschedule cron events | |
if ($basic['breeze-active'] == '1') { | |
Breeze_PurgeCacheTime::factory()->unschedule_events(); | |
Breeze_PurgeCacheTime::factory()->schedule_events((int)$basic['breeze-b-ttl']); | |
} | |
if (!class_exists('Breeze_Configuration')) { | |
require_once('wp-content/plugins/breeze/inc/breeze-configuration.php'); | |
} | |
// Add expires header | |
Breeze_Configuration::update_htaccess(); | |
//delete cache after settings | |
(new Breeze_Admin)->breeze_clear_all_cache(); | |
echo 'done!'; | |
} | |
md_change_breeze_settings(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment