helpdesksulekha
Go to the mysqli file I linked above, and change:
if (isset($options['ssl']))
$__db->ssl_set(
$options['ssl']['key'],
$options['ssl']['cert'],
$options['ssl']['ca'],
null, null);
... to:
if (isset($options['ssl']))
$__db->ssl_set(
$options['ssl']['key'] ?: null,
$options['ssl']['cert'] ?: null,
$options['ssl']['ca'] ?: null,
null, null);
.. and retest.
Cheers.