Información de rutas del servidor:"; echo "
DOCUMENT_ROOT: " . $_SERVER['DOCUMENT_ROOT'] . "
"; echo "SCRIPT_NAME: " . $_SERVER['SCRIPT_NAME'] . "
"; echo "REQUEST_URI: " . $_SERVER['REQUEST_URI'] . "
"; echo "HTTP_HOST: " . $_SERVER['HTTP_HOST'] . "
"; echo "__FILE__: " . __FILE__ . "
"; echo "__DIR__: " . __DIR__ . "
"; // Verificar si los archivos existen $test_file = __DIR__ . '/test_connection.php'; $import_file = __DIR__ . '/importar_pedimentos.php'; echo "test_connection.php: " . (file_exists($test_file) ? '✅ Existe' : '❌ No existe') . "
"; echo "importar_pedimentos.php: " . (file_exists($import_file) ? '✅ Existe' : '❌ No existe') . "
"; echo "Test URL: {$base_url}/IMPORTADORES/app/controllers/test_connection.php
"; ?>