我已经安装了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).发布于 2018-10-24 07:36:19
您有bc计量错误,您需要安装PHP扩展程序。
sudo apt install php7.2-bcmath
您可以使用php函数检查已启用的扩展。get_loaded_extensions()
发布于 2020-11-07 08:40:14
安装带有依赖项的php-bcmath
yum安装php-bcmath
发布于 2021-03-30 17:29:19
根据您的PHP版本,您必须安装bc计量扩展。
为7.2
sudo apt install php7.2-bcmath为7.4
sudo apt install php7.2-bcmath安装完成后,您必须重新启动apache服务器,然后只有它才会启动。
sudo service apache2 restarthttps://stackoverflow.com/questions/51877341
复制相似问题