Старт

This commit is contained in:
2023-11-07 19:51:49 +06:00
commit 86542a157f
5002 changed files with 199551 additions and 0 deletions

22
monitoring/records.php Normal file
View File

@ -0,0 +1,22 @@
<?php
//Разрешаем CrossDomain запросы
header('Access-Control-Allow-Origin: *');
header('XDomainRequestAllowed: 1');
header("Access-Control-Allow-Methods: POST, GET, OPTIONS");
header('Access-Control-Allow-Credentials: true');
header("Access-Control-Allow-Headers: X-PINGARUNER");
header('Access-Control-Max-Age: 3628800');
//Чтоб не кешировало
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');
require_once("../resources/metadata/include/xmltools.php");
require_once("../resources/metadata/include/tools.php");
//require_once("../metadata/include/MPDF54/mpdf.php");
require_once("config.php");
require_once("../resources/metadata/include/session.php");
require_once("../resources/metadata/dbms/records.php");