Skip to content
Snippets Groups Projects
Commit 8c5f5493 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#894 - Improve mysql connection error handling in installer

Check if the mysql_connect function exists in the installer.
parent ed666d97
No related branches found
No related tags found
2 merge requests!46Master,!21Master
......@@ -109,6 +109,9 @@ exec('hostname -f', $tmp_out);
$conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg server1.domain.tld ', $tmp_out[0]);
unset($tmp_out);
// Check if the mysql functions are loaded in PHP
if(!function_exists('mysql_connect')) die('No PHP mysql functions available. Please ensure that the PHP mysql module is loaded.');
//** Get MySQL root credentials
$finished = false;
do {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment