Installation

This » PECL extension is not bundled with PHP.

Information for installing this PECL extension may be found in the manual chapter titled Installation of PECL extensions. Additional information such as new releases, downloads, source files, maintainer information, and a CHANGELOG, can be located here: » https://pecl.php.net/package/geoip.

add a note

User Contributed Notes 2 notes

up
-4
falconshady at gmail dot com
3 years ago
Install geoip on php7.4:

# yum install -y http://rpms.remirepo.net/enterprise/remi-release-7.rpm
# yum install -y php74-php-pecl-geoip
# cp /etc/opt/remi/php74/php.d/40-geoip.ini /etc/php.d/
# vim etc/opt/remi/php74/php.d/40-geoip.ini -> change extension=geoip.so by /opt/remi/php74/root/usr/lib64/php/modules/geoip.so

Worked for me, I hope it helps you
up
-28
Justin
5 years ago
sudo su
yum install GeoIP-devel
mkdir /root/tmp
pear config-set temp_dir /root/tmp
pecl install -f geoip-1.1.1 # (Or latest)
Add 'extension=geoip.so' to /etc/php.ini
To Top