Drupal 8-商业模块-找不到BC Math PHP扩展

jak*_*e66 2 commerce bcmath php-extension drupal-8 drupal-commerce

我正在尝试在Drupal 8中安装商务模块,但是出现错误“找不到BC math PHP扩展名”。

我已经搜索了此问题,并尝试了其他操作,例如通过添加'bcmath.scale = 2'来编辑PHP.ini,但是我仍然收到错误消息。

任何帮助,将不胜感激,谢谢。

Gio*_*osK 5

只需为您的php版本安装bcmath插件,而无需按照接受的答案所述(重新)构建php

# get php version
php -v

# install bcmath based on your version lets assume php 7.1
# for ubuntu
sudo apt install php7.1-bcmath
# for centos 
yum install bcmath

# restart apache 
sudo systemctl restart apache2
Run Code Online (Sandbox Code Playgroud)

使用composer安装Commerce或Commerce Kickstart时出现上述问题