calnedario iniciado

This commit is contained in:
2025-11-13 01:11:01 +01:00
commit 1212c82ea9
206 changed files with 172012 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
header_remove('Access-Control-Allow-Origin');
header_remove('Access-Control-Allow-Methods');
header_remove('Access-Control-Allow-Headers');
header_remove('Access-Control-Allow-Credentials');
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET');
header('Access-Control-Allow-Headers: User-Agent,Authorization,Content-type,X-client');
header('Access-Control-Allow-Credentials: true');
if($_SERVER['REQUEST_METHOD']=='OPTIONS') // Preflighted request
exit(0);
?>