Browse Source

Changed DB config hosts to IP addresses

Signed-off-by: Dejan Geci <dejan.geci@gmail.com>
Dejan Geci 12 years ago
parent
commit
cf1ed5ba44
1 changed files with 3 additions and 3 deletions
  1. 3 3
      application/config/database.php

+ 3 - 3
application/config/database.php

@@ -69,7 +69,7 @@ return array(
 
 		'mysql' => array(
 			'driver'   => 'mysql',
-			'host'     => 'localhost',
+			'host'     => '127.0.0.1',
 			'database' => 'database',
 			'username' => 'root',
 			'password' => '',
@@ -79,7 +79,7 @@ return array(
 
 		'pgsql' => array(
 			'driver'   => 'pgsql',
-			'host'     => 'localhost',
+			'host'     => '127.0.0.1',
 			'database' => 'database',
 			'username' => 'root',
 			'password' => '',
@@ -90,7 +90,7 @@ return array(
 
 		'sqlsrv' => array(
 			'driver'   => 'sqlsrv',
-			'host'     => 'localhost',
+			'host'     => '127.0.0.1',
 			'database' => 'database',
 			'username' => 'root',
 			'password' => '',