Your IP : 3.137.181.48


Current Path : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/modules/main/tools/
Upload File :
Current File : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/modules/main/tools/check_appcache.php

<?
define('BX_SECURITY_SHOW_MESSAGE', 1);
define("NO_KEEP_STATISTIC", true);
define("NOT_CHECK_FILE_PERMISSIONS", true);
require_once($_SERVER["DOCUMENT_ROOT"] . "/bitrix/modules/main/include/prolog_before.php");
/**
 * @var CMain $APPLICATION
 */

if($_REQUEST["manifest_id"] && !\Bitrix\Main\Composite\AppCache::getDebug())
{
	$appCache = \Bitrix\Main\Composite\AppCache::getInstance();
	$data = $appCache->readManifestCache($_REQUEST["manifest_id"]);
	if($data && $data["TEXT"])
	{
		$APPLICATION->RestartBuffer();
		header('Content-Type: text/cache-manifest');
		echo $data["TEXT"];
		die();
	}
}

header("HTTP/1.0 404 Not Found");
die();
?>