34
3
mirror of https://github.com/joomla-docker/docker-joomla.git synced 2025-01-10 00:27:51 +00:00

Update makedb.php

FIX: PostgreSQL Connection Error
This commit is contained in:
Stéfano Araujo 2024-07-22 18:41:21 -03:00 committed by GitHub
parent 60bdaae5a9
commit 73dbbcea31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql')
$maxTries = 10;
do {
$connection = "host={$host} port={$port} user={$user} password={$password}";
$connection = "host={$host} port={$port} user={$user} password={$password} dbname={$db}";
$dbconn = @pg_connect($connection);
if (!$dbconn)