【问题标题】:RuntimeException: The bcmath extension is required by NumberFormatterRuntimeException:NumberFormatter 需要 bcmath 扩展
【发布时间】:2018-08-16 12:40:24
【问题描述】:
我已经安装了 drupal 商务模块。查看产品页面时出现以下错误。
RuntimeException: The bcmath extension is required by NumberFormatter. in CommerceGuys\Intl\Formatter\NumberFormatter->__construct() (line 113 of /home/web/docroot/vendor/commerceguys/intl/src/Formatter/NumberFormatter.php).
【问题讨论】:
标签:
drupal
drupal-commerce
【解决方案1】:
你有 bcmath 错误,你需要安装 PHP bcmath 扩展。
sudo apt install php7.2-bcmath
您可以使用 php 功能检查已启用的扩展。 get_loaded_extensions()
【解决方案2】:
安装 php-bcmath 和依赖项
yum 安装 php-bcmath
【解决方案3】:
根据您的 PHP 版本,您必须安装 bcmath 扩展。
7.2
sudo apt install php7.2-bcmath
7.4
sudo apt install php7.2-bcmath
安装完成后,您必须重新启动 apache 服务器,然后它才会启动。
sudo service apache2 restart