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:
parent
31570df64c
commit
d80fcf8de6
2 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ $dbtype = 'mysql4';
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
$dbhost = 'localhost';
|
$dbhost = '127.0.0.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database port.
|
* Database port.
|
||||||
|
|
|
@ -88,7 +88,7 @@ $dbname = 'scuttle';
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
$dbhost = 'localhost';
|
$dbhost = '127.0.0.1';
|
||||||
|
|
||||||
|
|
||||||
/***************************************************
|
/***************************************************
|
||||||
|
|
Loading…
Reference in a new issue