phpMyAdmin Error: The mbstring extension is missing. Please check your PHP configuration(phpMyAdmin 错误:缺少 mbstring 扩展.请检查您的 PHP 配置)
问题描述
我在运行 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...
检查这个帖子
这篇关于phpMyAdmin 错误:缺少 mbstring 扩展.请检查您的 PHP 配置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:phpMyAdmin 错误:缺少 mbstring 扩展.请检查您的 PHP 配置
基础教程推荐
- php中的foreach复选框POST 2021-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- php中的PDF导出 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
