diff options
Diffstat (limited to 'config.default.inc.php')
-rw-r--r-- | config.default.inc.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config.default.inc.php b/config.default.inc.php index 9ee2023..ec2be20 100644 --- a/config.default.inc.php +++ b/config.default.inc.php @@ -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 |