phpMyAdmin mbstring error

前端 未结 30 2057
渐次进展
渐次进展 2020-12-05 04:25

Whenever I try to enter my phpMyAdmin, it gives me this error:

The mbstring extension is missing. Please check your PHP configuration.

I\'v

30条回答
  •  北荒
    北荒 (楼主)
    2020-12-05 04:36

    Before sometime I also had the same problem. I have tried replacing the .dll file but no result. After some debugging I found the solution.

    I had this in my php.ini file:

    extension_dir = "ext"

    And I'm getting mbstring extension missing error. So I tried putting the full path for the extension directory and it works for me. like:

    extension_dir = "C:\php\ext"

    Hope this will help.

    Cheers,

提交回复
热议问题