phpMyAdmin mbstring error

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

提交回复
热议问题