]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
remove dbport from default config because nobody changes that one anyway. also set...
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 21 Sep 2009 18:03:05 +0000 (18:03 +0000)
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 21 Sep 2009 18:03:05 +0000 (18:03 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@364 b3834d28-1941-0410-a4f8-b48e95affb8f

config.default.inc.php
config.inc.php.dist

index 9ee2023a589975fa39db559900166d7c934d37e7..ec2be2054b2c62b0afb28d37cdf8eb7119d89dc6 100644 (file)
@@ -137,14 +137,17 @@ $dbtype = 'mysql4';
  *
  * @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
  */
-$dbport = 3306;
+$dbport = null;
 
 /**
  * Database username
index f75876ec4736004986178cee5e7e4a3fc2d9b617..2615bc6b602378f2bd63b9597d19bb6a58776e75 100644 (file)
@@ -101,13 +101,6 @@ $dbname = 'scuttle';
  *
  * @var string
  */
-$dbhost = '127.0.0.1';
-
-/**
- * Database port
- *
- * @var string|integer
- */
-$dbport = 3306;
+$dbhost = 'localhost';
 
 ?>