Remove: Delete duplicate validate_login.php from src/processors - keep only root endpoint

This commit is contained in:
twotalesanimation
2025-12-04 15:24:39 +02:00
parent ac460ef97f
commit 902291d8d1
12 changed files with 92 additions and 249 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
echo "Step 1: Starting script<br>";
$rootPath = dirname(dirname(dirname(__DIR__)));
echo "Step 2: Root path = " . $rootPath . "<br>";
echo "Step 3: Header path = " . $rootPath . '/header.php' . "<br>";
echo "Step 4: File exists? " . (file_exists($rootPath . '/header.php') ? 'YES' : 'NO') . "<br>";
$headerStyle = 'light';
echo "Step 5: About to include header<br>";
include_once($rootPath . '/header.php');
echo "Step 6: Header included successfully<br>";
?>
<h1>Test Page Content</h1>
<?php
echo "Step 7: About to include footer<br>";
include_once($rootPath . '/components/insta_footer.php');
echo "Step 8: Footer included successfully<br>";
?>