From cf1ed5ba44a9d5dafd47eb13be7e54891a1097b6 Mon Sep 17 00:00:00 2001 From: Dejan Geci Date: Mon, 12 Nov 2012 21:17:39 +0100 Subject: [PATCH] Changed DB config hosts to IP addresses Signed-off-by: Dejan Geci --- application/config/database.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/config/database.php b/application/config/database.php index 067335aa..8a47dc0b 100644 --- a/application/config/database.php +++ b/application/config/database.php @@ -69,7 +69,7 @@ 'mysql' => array( 'driver' => 'mysql', - 'host' => 'localhost', + 'host' => '127.0.0.1', 'database' => 'database', 'username' => 'root', 'password' => '', @@ -79,7 +79,7 @@ 'pgsql' => array( 'driver' => 'pgsql', - 'host' => 'localhost', + 'host' => '127.0.0.1', 'database' => 'database', 'username' => 'root', 'password' => '', @@ -90,7 +90,7 @@ 'sqlsrv' => array( 'driver' => 'sqlsrv', - 'host' => 'localhost', + 'host' => '127.0.0.1', 'database' => 'database', 'username' => 'root', 'password' => '',