我已经安装了drupal Commerce模块。查看产品页面时出现以下错误。
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).
答案 0 :(得分:2)
您遇到bcmath错误,需要安装PHP bcmath扩展。
sudo apt install php7.2-bcmath
您可以使用php功能检查已启用的扩展。 `get_loaded_extensions()
答案 1 :(得分:0)
安装具有依赖项的php-bcmath
请安装php-bcmath
答案 2 :(得分:0)
根据您的 PHP 版本,您必须安装 bcmath 扩展。
7.2
sudo apt install php7.2-bcmath
7.4
sudo apt install php7.2-bcmath
安装完成后,您必须重新启动 apache 服务器,然后它才会启动。
sudo service apache2 restart