We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed666d9 commit 8c5f549Copy full SHA for 8c5f549
install/install.php
@@ -109,6 +109,9 @@
109
$conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg server1.domain.tld ', $tmp_out[0]);
110
unset($tmp_out);
111
112
+// Check if the mysql functions are loaded in PHP
113
+if(!function_exists('mysql_connect')) die('No PHP mysql functions available. Please ensure that the PHP mysql module is loaded.');
114
+
115
//** Get MySQL root credentials
116
$finished = false;
117
do {
0 commit comments