1

I have installed drupal commerce module. I am getting the below error while viewing a product page.

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).
Syam Mohan M P
  • 1,047
  • 8
  • 23

3 Answers3

3

You have bcmath error and you need to install PHP bcmath extension.

sudo apt install php7.2-bcmath

You can check enabled extensions with php function. get_loaded_extensions()

Alen Simonyan
  • 360
  • 2
  • 9
0

Install php-bcmath with dependencies

yum install php-bcmath

Harsha
  • 1
  • 1
0

Based on your PHP version you have to install bcmath extension.

for 7.2

 sudo apt install php7.2-bcmath

for 7.4

 sudo apt install php7.2-bcmath

Once done with installation you have to restart apache server then only it will start.

sudo service apache2 restart
Ajay Gadhavana
  • 415
  • 5
  • 5