";
$rootPath = dirname(dirname(dirname(__DIR__)));
echo "Step 2: Root path = " . $rootPath . "
";
echo "Step 3: Header path = " . $rootPath . '/header.php' . "
";
echo "Step 4: File exists? " . (file_exists($rootPath . '/header.php') ? 'YES' : 'NO') . "
";
$headerStyle = 'light';
echo "Step 5: About to include header
";
include_once($rootPath . '/header.php');
echo "Step 6: Header included successfully
";
?>