phpMyAdmin mbstring error

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

    In newer versions of PHP, "extension_dir" is not initially enabled.

    0 讨论(0)
  • 2020-12-05 04:46

    Ubuntu 15.10

    1) sudo nano /etc/php/7.0/apache2/php.ini

    uncommited extension=php_mbstring.dll

    2) sudo apt-get install php7.0-mbstring

    3) restart apache2

    0 讨论(0)
  • 2020-12-05 04:46

    I had this problem in the past with MAMP on a Windows machine.

    Open MAMP start page and go to your current configuration of PHP (phpinfo). Check the Configuration File (php.ini) PATH.

    Mine was set to C:\Windows, where of course I had no PHP.ini file.

    Either change the php.ini path to C:\MAMP\conf\php5.6.8 (or your php version conf path) or just copy php.ini to c:\windows.

    0 讨论(0)
  • 2020-12-05 04:47

    In Centos I have installed a php extension. I did this with:

    yum install php-mbstring
    
    0 讨论(0)
  • 2020-12-05 04:47

    after installing WAMP 3 with Apache 2.4.17 and php5.6.17 I tried to look at php.ini from wampserver (green icon in tray). It wasn't finding it. I copied php.ini from the php.5.6.15 directory to the apache2.4.17\bin\ directory and phpmyadmin worked fine without missing mbstring

    0 讨论(0)
  • 2020-12-05 04:50

    In php's directory try change extension of configuration file (php.ini-development - default value of this file). I changed it to php.ini and phpmyadmin has worked.

    0 讨论(0)
提交回复
热议问题