Skip to content

Instantly share code, notes, and snippets.

@arwinvdv
Created July 26, 2024 08:54
Show Gist options
  • Save arwinvdv/fd99d34f8704a8606cfefc6957215efe to your computer and use it in GitHub Desktop.
Save arwinvdv/fd99d34f8704a8606cfefc6957215efe to your computer and use it in GitHub Desktop.
Change Breeze cache TTL configuration with ManageWP snippet
<?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