Geoip : Différence entre versions
De SME Server Wiki
Ligne 2 : | Ligne 2 : | ||
http://php.net/manual/fr/ref.geoip.php | http://php.net/manual/fr/ref.geoip.php | ||
+ | |||
http://forum.webrankinfo.com/base-donnees-ville-t127000.html | http://forum.webrankinfo.com/base-donnees-ville-t127000.html | ||
+ | |||
http://blog.thecodingmachine.com/fr/content/installing-php-geolocalization-extension-centos | http://blog.thecodingmachine.com/fr/content/installing-php-geolocalization-extension-centos | ||
+ | |||
http://wiki.contribs.org/GeoIP | http://wiki.contribs.org/GeoIP | ||
+ | |||
+ | |||
+ | === ajout des bases ==== | ||
+ | cd / | ||
+ | cd /var/lib/GeoIP | ||
+ | wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz | ||
+ | gunzip GeoIP.dat.gz | ||
+ | |||
+ | ===Faire un cron-job de mise a jour=== | ||
+ | |||
+ | mkdir -p /etc/e-smith/templates-custom/etc/crontab | ||
+ | echo "# Updating the GeoIP database monthly on the 5th at 0:00h.">/etc/e-smith/templates-custom/etc/crontab/91_Update_GeoIP_db | ||
+ | echo " 0 0 5 * * root /usr/bin/wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O /var/lib/GeoIP/GeoIP.dat.gz; /bin/gunzip -f /var/lib/GeoIP/GeoIP.dat.gz" >> /etc/e-smith/templates-custom/etc/crontab/91_Update_GeoIP_db | ||
+ | expand-template /etc/crontab | ||
+ | |||
Ligne 11 : | Ligne 29 : | ||
Le module PECL a comme dépendance la librairie geoip C qui doit être installée: | Le module PECL a comme dépendance la librairie geoip C qui doit être installée: | ||
− | yum install GeoIP GeoIP-devel --enablerepo= | + | yum install GeoIP GeoIP-devel --enablerepo=extras |
Si PECL, ou les dev php et httpd ne sont pas installés: | Si PECL, ou les dev php et httpd ne sont pas installés: |
Version du 3 novembre 2010 à 03:09
Sommaire
Geoip PHP references
http://php.net/manual/fr/ref.geoip.php
http://forum.webrankinfo.com/base-donnees-ville-t127000.html
http://blog.thecodingmachine.com/fr/content/installing-php-geolocalization-extension-centos
http://wiki.contribs.org/GeoIP
ajout des bases =
cd / cd /var/lib/GeoIP wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz gunzip GeoIP.dat.gz
Faire un cron-job de mise a jour
mkdir -p /etc/e-smith/templates-custom/etc/crontab echo "# Updating the GeoIP database monthly on the 5th at 0:00h.">/etc/e-smith/templates-custom/etc/crontab/91_Update_GeoIP_db echo " 0 0 5 * * root /usr/bin/wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O /var/lib/GeoIP/GeoIP.dat.gz; /bin/gunzip -f /var/lib/GeoIP/GeoIP.dat.gz" >> /etc/e-smith/templates-custom/etc/crontab/91_Update_GeoIP_db expand-template /etc/crontab
Geoip PHP instalaltion
L'extension geoip pour PHP est un module PECL. Le module PECL a comme dépendance la librairie geoip C qui doit être installée:
yum install GeoIP GeoIP-devel --enablerepo=extras
Si PECL, ou les dev php et httpd ne sont pas installés:
yum install php-pear php-devel httpd-devel
Ensuite récupérez, compilez et installez le module:
pecl install geoip
Ajouter les infos pour que PHP charge l'extension en ajoutant la ligne suivante au fichier /etc/php.d/geoip.ini:
echo "extension=geoip.so" >> /etc/php.d/geoip.ini
Finalement, redémarrer Apache:
service httpd-e-smith restart