Fix: Corrige errores en recurrentes y limpia el repositorio

This commit is contained in:
2026-01-17 16:54:27 -06:00
parent 4c48c279de
commit 3f0727984a
32 changed files with 134 additions and 2157552 deletions

10
clear_opcache.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
// Clear PHP opcache if enabled
if (function_exists('opcache_reset')) {
opcache_reset();
echo "PHP opcache cleared.\n";
}
// Clear file cache
clearstatcache();
echo "File stat cache cleared.\n";