remove dbport from default config because nobody changes that one anyway. also set default host to localhost instead of 127.0.0.1 to allow socket connections (till said ip forces tcp)

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@364 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-09-21 18:03:05 +00:00
parent 4312a23bd1
commit dbb27278de
2 changed files with 7 additions and 11 deletions

View file

@ -137,14 +137,17 @@ $dbtype = 'mysql4';
* *
* @var string * @var string
*/ */
$dbhost = '127.0.0.1'; $dbhost = 'localhost';
/** /**
* Database port * Database port.
*
* When using mysqli, leave this to null
* - connecting will fail otherwise.
* *
* @var string|integer * @var string|integer
*/ */
$dbport = 3306; $dbport = null;
/** /**
* Database username * Database username

View file

@ -101,13 +101,6 @@ $dbname = 'scuttle';
* *
* @var string * @var string
*/ */
$dbhost = '127.0.0.1'; $dbhost = 'localhost';
/**
* Database port
*
* @var string|integer
*/
$dbport = 3306;
?> ?>