phpMyAdmin 错误:缺少 mbstring 扩展.请检查您的 PHP 配置

2022-01-05 00:00:00 php mbstring phpmyadmin

我在运行 phpMyAdmin 时遇到问题.当我尝试在浏览器中访问 phpMyAdmin 时,收到错误消息:缺少 mbstring 扩展.请检查您的 PHP 配置."

I have a problem running phpMyAdmin. When I try to access phpMyAdmin in my browser, I get the error message: "The mbstring extension is missing. Please check your PHP configuration."

我已经在互联网上搜索了可能的解决方案.据此,我在 php.ini 文件中做了一些修改.我取消了;extension=php_mbstring.dll"这一行的注释,并在extension_dir 中写入了ext 文件夹的完整路径.遗憾的是,它仍然不起作用.

I have already searched on the internet for possible solutions. According to that, I made some modifications in php.ini file. I uncommented the line ";extension=php_mbstring.dll" and wrote the full path of the ext folder in extension_dir. Sadly, it still doesn't work.

你能帮我找到合适的解决方案吗.

Could you please help me finding the proper solution.

推荐答案

只需运行这些命令

sudo apt-get install phpmyadmin php-mbstring php-gettext

sudo service apache2 restart

或者你可以关注这个帖子...

Or you can follow this post...

检查这个帖子

相关文章