From 02a7b0dcc88cbc94a1e7c552c576f80064d3d095 Mon Sep 17 00:00:00 2001 From: Steven Ngesera Date: Thu, 21 Dec 2023 21:27:10 +0300 Subject: [PATCH] Fix: DB auth has problems with the new dotenv config (fix included) #847 --- config/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/database.php b/config/database.php index c7ee21877a..2e6a149930 100644 --- a/config/database.php +++ b/config/database.php @@ -17,7 +17,7 @@ | Connection type. Can be "host" to connect to a hostname, or "socket" to | connect to a unix socket. */ - 'db_conn_type' => env('DB_CONNECTION_TYPE', 'host'), + 'db_connection_type' => env('DB_CONNECTION_TYPE', 'host'), /* | @@ -63,5 +63,5 @@ | | Database type. can be any supported PDO driver ; (http://php.net/manual/en/pdo.drivers.php) */ - 'db_driver' => env('DRIVER','mysql') + 'db_driver' => env('DB_DRIVER','mysql') ];