Change "localhost" into 127.0.0.1 because it avoids a bug in Windows Seven.

http://serverfault.com/questions/4689/windows-7-localhost-name-resolution-is-handled-within-dns-itself-why

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@716 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2010-07-21 18:44:54 +00:00
parent 31570df64c
commit d80fcf8de6
2 changed files with 2 additions and 2 deletions

View file

@ -138,7 +138,7 @@ $dbtype = 'mysql4';
* *
* @var string * @var string
*/ */
$dbhost = 'localhost'; $dbhost = '127.0.0.1';
/** /**
* Database port. * Database port.

View file

@ -88,7 +88,7 @@ $dbname = 'scuttle';
* *
* @var string * @var string
*/ */
$dbhost = 'localhost'; $dbhost = '127.0.0.1';
/*************************************************** /***************************************************