Fedora phpMyAdmin error: The mbstring extension is missing
Fedora phpMyAdmin error: The mbstring extension is missing
我在 this tutorial 之后在 Fedora 上安装了 LAMP 并进行了一些更改,安装完成没有问题。但是当我尝试访问 http://localhost/phpmyadmin
时,出现此错误通知。我已经在 google 上搜索并尝试上面链接的线程上的所有选项。
我更改了php.ini配置:
extension=mbstring.so
扩展目录是这样的
extension_dir = "/usr/lib64/php/modules"
This are the Extensions on /usr/lib64/php/modules
从这个article,我发现我们需要重新启动php-fpm,这个解决方案在我阅读的其他tutorial/thread中没有提到。
只是 运行:
systemctl restart php-fpm
我在 this tutorial 之后在 Fedora 上安装了 LAMP 并进行了一些更改,安装完成没有问题。但是当我尝试访问 http://localhost/phpmyadmin
时,出现此错误通知。我已经在 google 上搜索并尝试上面链接的线程上的所有选项。
我更改了php.ini配置:
extension=mbstring.so
扩展目录是这样的
extension_dir = "/usr/lib64/php/modules"
This are the Extensions on /usr/lib64/php/modules
从这个article,我发现我们需要重新启动php-fpm,这个解决方案在我阅读的其他tutorial/thread中没有提到。
只是 运行:
systemctl restart php-fpm