After installing wampServer, I haven’t used phpMyAdmin. I used it today. phpMyAdmin displays an error: The mbstring extension is missing. Please check your PHP configuration . Error description mbstring extension is missing, please check php configuration. As shown in the picture:
Picture1、Extension missing
My computer system is win10, the configuration of wampServer is as follows (here is the picture taken after the problem is solved, you can see it in Loaded Extensionsmbstring, The yellow part in the picture):
Picture2, my wampserverconfiguration
Most of the solutions online are:
Change the php.ini file: extension_dir = "ext" to extension_dir = "D:phpext" (the full path of your own file)
;extension=php_mbstring.dllChanged toextension=php_mbstring.dll (remove the colon in front)
After checking, I found that php.ini does not have these two problems, as shown in the picture:
Picture3, path settings before changes
Picture4, extension configuration before changes
The final solution is: Copy the php.ini file to the windows folder, as shown in the picture:
Picture5, copy the php.ini file to the windows folder
Solved the problem smoothly.
Thanks to [flyLittle Balls2] for sharing: http://zhidao.baidu.com/question/586041374.html?qbl=relate_question_3&word=The%20mbstring%20extension %20is%20missing.%20Please%20check%20your%20PHP%20configuration.