The recent installation of the new version of phpMyAdmin will prompt the missing mysqli extension, Mysqli.dll is a php extension of the new features of MySQL, in the PHP5 can be loaded in php.ini.
The mysqli extension is missing. Please check your PHP configuration. See we documentation for more information.
First, the solution steps
Hint missing mysqli extension, solve is also very simple, only need to open support mysqli extension in php.ini.
- Open the PHP installation directory, go to ext directory, see if there is a Php_mysqli.dll file, if not, need to reinstall PHP
- Open the c:\windows\php.ini,php configuration file.
- To Extension=php_mysqli.dll, to replace with.
Extension=php_mysqli.dll
- Open phpMyAdmin found that the error message has been lost, indicating that mysqli open successfully, if there are errors, continue to the next step.
- Find extension_dir= "./ext", modify PHP Extension directory ext to absolute path
Extension_dir = "d:/php_iis/php/ext/"
d:/php_iis/php, is the PHP installation directory
6. To this mysqli has been opened successfully, phpMyAdmin open Normal, you can test mysqli advanced features of the AC qq:2881064157
What should I do if I install phpmyadmin missing mysqli extension?