Skip to content

Instantly share code, notes, and snippets.

@sashabeep
Created May 28, 2026 11:38
Show Gist options
  • Select an option

  • Save sashabeep/90d33f9c2c84a5f0b6fc5f15b5f49e95 to your computer and use it in GitHub Desktop.

Select an option

Save sashabeep/90d33f9c2c84a5f0b6fc5f15b5f49e95 to your computer and use it in GitHub Desktop.
Cache Cleaner Evocms
//OnWebPageComplete
if (count(scandir(MODX_BASE_PATH.'assets/cache/')) > 99) {
$modx->clearCache('full');
}
if (count(scandir(MODX_BASE_PATH.'core/storage/cache/')) > 99) {
use Illuminate\Support\Facades\Cache;
Cache::flush();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment