phpMyAdmin mbstring error

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

    I had the same problem, the above solutions are not worked for me.

    What I did is uninstalled the wamp and logout the Skype and re-installed wamp.

    Then It got worked. I think the port used by wamp and Skype is same.

    Hope this input will help.

    Cheers :)

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

    check your php.ini file in the root directory of your php installation. In the extensions part of the configuration you should find:

    ;extension=php_mbstring.dll
    

    remove the leading ';' to uncomment and enable the extension so it looks like this:

    extension=php_mbstring.dll
    

    restart your apache and it should work.

    Edit: I just read that you are already using a webhost. Does your webhost have a interface where you can set php variables etc? Or a .ini file you can edit?

    If not you may are forced to talk to the webhost and ask them to enable that particular extension.

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

    To solve this problem on Linux, you need to recompile your PHP with the --enable-mbstring flag.

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

    Please uncomment the following lines at php.ini

    ;extension=php_mbstring.dll ;extension=php_exif.dll ; Must be after mbstring as it depends on it ;extension=php_mysql.dll ;extension=php_mysqli.dll

    This will help to solve.

    0 讨论(0)
  • 2020-12-05 05:00

    my solution : Copy a shortcut from your php.ini from your php-directory to the apache-dir. This way you refere too 1 file on the correct place. This solved (at least in my case) the problem.

    0 讨论(0)
  • 2020-12-05 05:00

    The installation process adds the phpMyAdmin Apache configuration file into the /etc/apache2/conf-enabled/ directory, where it is read automatically. The only thing you need to do is explicitly enable the mbstring PHP extension, Because sometimes you forgot to enable the mbstring mode so simply type the below command to enabled the mbstring mode...

       sudo phpenmod mbstring
    

    Afterward, restart Apache for your changes to be recognized:

    sudo systemctl restart apache2
    
    0 讨论(0)
提交回复
热议问题