From 3bd13812e50ce12214d1b77b7e63bbbb5d783da6 Mon Sep 17 00:00:00 2001 From: Mathieu Bruyen Date: Sat, 15 Dec 2018 08:38:12 +0100 Subject: [PATCH] debug parameters --- config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.php b/config.php index 7ece19f..baca87c 100644 --- a/config.php +++ b/config.php @@ -4,7 +4,7 @@ // ******************************************* preg_match('#^postgres://(.*):(.*)@(.*):(.*)/(.*)$#', getenv('DATABASE_URL'), $matches); - print_r(getenv('DATABASE_URL')); + print_r($_ENV); print_r($matches); define('DB_TYPE', "pgsql"); define('DB_HOST', $matches[3]);