Browse Source

Added MySQLi Check - Fixes https://github.com/OpenGamePanel/OGP-Website/issues/455

own3mall 6 years ago
parent
commit
b8e8c5064d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      install.php

+ 2 - 1
install.php

@@ -240,7 +240,8 @@ function install() {
             array( "name" => "PHP XML Reader", "type" => "c", "value" => "XMLReader" ),
 			array( "name" => "PHP JSON Extension", "type" => "f", "value" => "json_decode" ),
 			array( "name" => "PHP Zip Extension", "type" => "c", "value" => "ZipArchive" ),
-			array( "name" => "PHP mbstring Extension", "type" => "x", "value" => "mbstring" ));
+			array( "name" => "PHP mbstring Extension", "type" => "x", "value" => "mbstring" ),
+			array( "name" => "PHP MySQLi Extension", "type" => "f", "value" => "mysqli_connect" ));
 			
 		$optional_properties_to_check = array(
 			array( "name" => "PHP BCMath Extension", "type" => "f", "value" => "bcadd" ),