How to install bcmath module?

PhpModuleBcmath

Php Problem Overview


How do I install the bcmath module on a server? I tried

yum update php-bcmath

but it said it found nothing.

Php Solutions


Solution 1 - Php

Try yum install php-bcmath. If you still can't find anything, try yum search bcmath to find the package name

Solution 2 - Php

ubuntu and php7.1

sudo apt install php7.1-bcmath

ubuntu and php without version specification

sudo apt install php-bcmath

Solution 3 - Php

yum install php72-php-bcmath.x86_64
cp /etc/opt/remi/php72/php.d/20-bcmath.ini /etc/php.d/
cp /opt/remi/php72/root/usr/lib64/php/modules/bcmath.so /usr/lib64/php/modules/
systemctl restart httpd

Not sure why I had to go so deep considering the yum install gave me bcmath in phpinfo()

Solution 4 - Php

Worked great on CentOS 6.5

yum install bcmath

All my calls to bcmath functions started working right after an apache restart

service httpd restart

Sweet!

Solution 5 - Php

When using the official PHP images of Docker, use docker-php-ext-install bcmath.

Source: https://hub.docker.com/_/php?tab=description#php-core-extensions

Solution 6 - Php

Was getting call to undefined function bcmod()

yum install php-bcmath
systemctl restart httpd.service

you should then see something similar to /etc/php.d/bcmath.ini listed under phpinfo.

Centos 7
Plesk 12
PHP 5.4.16

Solution 7 - Php

If you have installed php 7.1 then this line work on your system.

sudo apt install php7.1-bcmath

check your php version in your system on ubuntu 16.04

php -v

and then result show there..

> PHP 7.1.x+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Aug 19 2018 > 07:16:12) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine > v3.2.0, Copyright (c) 1998-2018 Zend Technologies > with Zend OPcache v7.2.9-1+ubuntu16.04.1+deb.sury.org+1, Copyright (c) 1999-2018, by Zend Technologies

Solution 8 - Php

The following worked for me on Centos 7.4 with PHP 7.1 using remi repository.

First find out which PHP version I have:

[kiat@reporting ~]$ php --version
PHP 7.1.33 (cli) (built: Oct 23 2019 07:28:45) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.1.33, Copyright (c) 1999-2018, by Zend Technologies

Then search for bcmath extension in remi-php71 repository:

[kiat@reporting ~]$ yum search php71 | grep bcmath
php71-php-bcmath.x86_64 : A module for PHP applications for using the bcmath
php71u-bcmath.x86_64 : A module for PHP applications for using the bcmath

Now install the first matching extension:

[kiat@reporting ~]$ sudo yum --enablerepo=remi-php71 install php-bcmath
Loaded plugins: fastestmirror, langpacks
base                                                     | 3.6 kB     00:00
.
.
.

Finally, restart php and nginx:

[kiat@reporting ~]$ sudo systemctl restart php-fpm nginx

Solution 9 - Php

I found that the repo that had the package was not enabled. On OEL7,

$ vi /etc/yum.repos.d/ULN-Base.repo
Set enabled to 1 for ol7_optional_latest

$ yum install php-bcmath

and that worked...

I used the following command to find where the package was

$ yum --noplugins --showduplicates --enablerepo \* --disablerepo \*-source --disablerepo C5.\*,c5-media,\*debug\*,\*-source list \*bcmath

Solution 10 - Php

If you want to enable any extension then you have to install an extension first, extension maybe enabled but not installed, so taking the example of bcmath

  1. yum search php-bcmath

  2. Then ensure the php version in which u want to install this extension

  3. You will get output like after yum search command>>

yum search php-bcmath** Loaded plugins: fastestmirror, universal-hooks Loading mirror speeds from cached hostfile

EA4: 66.71.244.18
cpanel-addons-production-feed: 66.71.244.18
base: mirror.nodesdirect.com
epel: mirror.coastal.edu
extras: www.gtlib.gatech.edu
nux-dextop: mirror.li.nux.ro
updates: mirror.jaleco.com
**============================================================== N/S matched: php-bcmath ===============================================================
ea-php54-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library
ea-php55-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library
ea-php56-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library
ea-php70-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library
ea-php71-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library
ea-php72-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library

6. If I wanna install for php71 then the command will be like yum install ea-php71-php-bcmath.x86_64 or yum install php71-bcmath.

  1. You can install any extension from the above steps.

Solution 11 - Php

In Ubuntu PHP 7.3

sudo apt install php7.3-bcmath

Solution 12 - Php

To enable bcmath in Arch Linux or Manjaro

Edit php.ini

nano /etc/php/php.ini

Uncomment bcmath (remove semicolon)

extension=bcmath

If you are using Apache server reload the server by

sudo systemctl reload apache.server

Or

sudo systemctl realod httpd

If you don't use Apache

sudo systemctl reload php-fpm.service

To see the activated modules

php -m

To make sure the bcmath is installed and activated, search for it

php -m | grep bcmath

Solution 13 - Php

This worked for me install php72-php-bcmath.x86_64 Then,

systemctl restart php72-php-fpm.service

Solution 14 - Php

For PHP 7+ version you can use only:

sudo apt install php-bcmath

Solution 15 - Php

I just tried below package for php v5.6 and it worked for me.

yum install php56w-bcmath

Solution 16 - Php

apt repo have this extension, just run the below command from your terminal ::

sudo apt-get install php7.2-bcmath*

Solution 17 - Php

If still anyone is not getting how to install bcmath as it has lots of other dependant modules to install like php7.2-common, etc.

Try using synaptic application, to install the same. fire command.\

sudo apt-get install synaptic

Open the synaptic application and then click on search tab.

search for bcmath

search results will show all the packages depends on php.

Install as per your convenience.

and install with all auto populated dependancies it required to install.

That's it.

Solution 18 - Php

For Centos 7 with php7.0

Install CentOS SCLo RH repository: yum install centos-release-scl-rh

Install rh-php71-php-bcmath rpm package: yum install rh-php71-php-bcmath

systemctl restart httpd.service

Solution 19 - Php

If you want to install PHP extensions in ubuntu.

first know which PHP version is active.

php -v

After that install needed plugin using this command.

sudo apt install php7.0-bcmath

you can replace php7.0-bcmath to php-PHPVersion-extensionName

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJDesignsView Question on Stackoverflow
Solution 1 - Phpgreg0ireView Answer on Stackoverflow
Solution 2 - PhpAlbert sView Answer on Stackoverflow
Solution 3 - PhpfragbaitView Answer on Stackoverflow
Solution 4 - PhpAnthonyView Answer on Stackoverflow
Solution 5 - Phpmarijnz0rView Answer on Stackoverflow
Solution 6 - PhpMrTView Answer on Stackoverflow
Solution 7 - PhptestingView Answer on Stackoverflow
Solution 8 - PhpkiatngView Answer on Stackoverflow
Solution 9 - PhpNeoView Answer on Stackoverflow
Solution 10 - PhpPrakash LakharaView Answer on Stackoverflow
Solution 11 - PhpfcvaView Answer on Stackoverflow
Solution 12 - PhpOussamaView Answer on Stackoverflow
Solution 13 - PhpSamView Answer on Stackoverflow
Solution 14 - PhpSanto BoldizarView Answer on Stackoverflow
Solution 15 - PhpPalanikumarView Answer on Stackoverflow
Solution 16 - PhpSubrat Kumar PalharView Answer on Stackoverflow
Solution 17 - PhpRahulView Answer on Stackoverflow
Solution 18 - PhpPravin GurungView Answer on Stackoverflow
Solution 19 - PhpSanjun DevView Answer on Stackoverflow