Open the phpMyAdmin hint in the WAMP environment "the mysqli extension is missing. Please check your PHP configuration. ", this article shared my solution, have encountered the same problem of friends under the reference, hope to solve your problem. Wamp installed Wampserver (wampserver2.2e-php5.4.3-httpd2.2.22-mysql5.5.24-32b.exe) PHP is 5.4. After the installation is complete, when you run phpMyAdmin, an error message appears: The mysqli extension is missing. Please check your PHP configuration. Such as: Here's a good solution to share: Steps: See if there are any php_mysqli.dll files in the PHP ext directory. If so, continue with the steps below. No words re-install PHP open php.ini, find; Extension=php_mysqli.dll put the semicolon in front ";" removed, changed to Extension=php_mysqli.dll found; extension_dir= "./ext" put the preceding semicolon ";" Remove and change to extension_dir= "d:/wamp/bin/php/php5.4.3/ext/" to restart the wampserver.Wamp software is turned on by default to http://localhost/phpmyadmin/, try http://127.0.0.1/phpmyadmin/. So, open the phpMyAdmin configuration file D:\wamp\alias\phpmyadmin.conf change allow from 127.0.0.1 to allow from 127.0.0.1 localhost. The original phpMyAdmin settings only allowed to open from 127.0.0.1, so the problem easily solved. Hope that the above method, can help you solve the same problem, I wish you success. Articles you may be interested in: phpMyAdmin methods for importing and recovering large-capacity SQL files phpMyAdmin installation error, several workarounds for missing mysqli extension phpMyAdmin Unable to load mysqli extension, please check PHP Workaround for configuration: phpMyAdmin missing mysqli extension. Please check PHP Configuration problems MySQL and phpMyAdmin solve the problem of Chinese garbled phpmyadmin import and export problems phpMyAdmin occasionally respond to slow problems solution PHP import phpmyadmin exported SQL implementation code phpMyAdmin Workarounds for large SQL files cannot be imported phpMyAdmin resolution of problems when importing large database files |