HEX
Server: LiteSpeed
System: Linux premium212.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: vitanhod (1367)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //home/vitanhod/barnabites.es/wp-content/plugins/airlift/buffer/third_party_caching.php
<?php

if (!defined('ABSPATH')) exit;

if (!class_exists('ALThirdPartyCache')) :
	class ALThirdPartyCache {
		function startThirdPartyHostCaching() {
			$cache_fname = dirname( __FILE__ ) . "/cache.php";

			if (file_exists($cache_fname)) {
				require_once $cache_fname;
				$socache = new ALCache();
				$socache->parseAirliftParamsHeader();
				if (isset($socache->airlift_print_buffer) && !empty($socache->airlift_print_buffer)) {
					ob_start([$socache, 'serveBuffer']);
				}
				else {
					ob_start([$socache, 'optimizePage']);
				}
			}
		}
	}
endif;