From ae31205246156f698186df0f197bd13cc89574ab Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Thu, 27 Feb 2014 13:08:01 +0100 Subject: [PATCH] Fixed #28 - Removed default db connection string (works on some xampp installations) --- protected/config/_defaults.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protected/config/_defaults.php b/protected/config/_defaults.php index d88c9ff381..6bcf6c9ba8 100644 --- a/protected/config/_defaults.php +++ b/protected/config/_defaults.php @@ -8,7 +8,7 @@ return array( 'components' => array( // Database 'db' => array( - 'connectionString' => 'mysql:host=localhost;dbname=test', + 'connectionString' => '', 'emulatePrepare' => true, 'charset' => 'utf8', 'enableProfiling' => true,