We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860cbe2 commit 129b76aCopy full SHA for 129b76a
1 file changed
src/Utility/DatabaseUtility.php
@@ -92,6 +92,7 @@ public static function getTemporaryMyCnfFile(
92
$content .= "port=\"" . ((isset($dbConfig['port']) && $dbConfig['port']) ? $dbConfig['port'] : 3306) . "\"\n";
93
$content .= "user=\"{$dbConfig['user']}\"\n";
94
$content .= "password=\"{$dbConfig['password']}\"\n";
95
+ $content .= "ssl=false\n";
96
file_put_contents($tmpMyCnfFile, $content);
97
98
return $tmpMyCnfFile;
0 commit comments