phpMyAdmin mbstring error

前端 未结 30 1949
渐次进展
渐次进展 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:37

    Using xampp, this will work (php7 has been extracted to the xampp\php directory):

    Make the following changes in the php.ini:

    1. uncommend (remove the ;)

    ;extension=php_mbstring.dll

    1. uncommend (remove the ;)

    ;extension=php_mysqli.dll

    1. set the path to the extention Directory

    extension_dir = "ext"

    to the full path, for example:

    extension_dir = "C:\xammp\php\ext"

    Additional, change the xampp-settings in the httpd-xampp.conf:

    1. change

    LoadFile "C:/xampp/php/php5ts.dll"

    to

    LoadFile "C:/xampp/php/php7ts.dll"

    1. change

    LoadModule php5_module "C:/xampp/php/php5apache2_4.dll"

    to

    LoadModule php7_module "C:/xampp/php/php7apache2_4.dll"

    1. change all appearance (3 times) of

    IfModule php5_module

    to

    IfModule php7_module

    That's it.

提交回复
热议问题