13 lines
367 B
PHP
13 lines
367 B
PHP
<?php
|
|
ini_set('display_errors',1);
|
|
error_reporting(E_ALL);
|
|
try {
|
|
require_once __DIR__ . '/../config/config_enhanced.php';
|
|
echo "config_enhanced OK\n";
|
|
require_once __DIR__ . '/../config/config.php';
|
|
echo "config.php OK\n";
|
|
} catch (Throwable $t) {
|
|
echo "Throwable on require: " . $t->getMessage() . "\n";
|
|
echo $t->getTraceAsString() . "\n";
|
|
}
|