dsjfrkvn818747 2014-09-26 14:56
浏览 25
已采纳

如何在共享服务器上配置GeoIP?

I want to configure GeoIP to redirect domain to a subdomains according to country IP address in a shared server. I have created a custom php.ini to import geoip.so then in my index.php I added this code:

<?php
    require_once('/home/fuiba/php.ini');
    $gi = geoip_open('GeoIP.dat', GEOIP_MEMORY_CACHE);
    $country = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);

    geoip_close($gi);
    $my_countries = 'fr';
    if (strtolower($country) == $my_countries) {
        header('Location: fr.fuiba.org');
    }
    $my_countriessss = 'us';
    if (strtolower($country) == $my_countriessss) {
        header('Location: en.fuiba.org');
    }
?>

In the browser I get this error:

extension=geoip.so
Fatal error: Call to undefined function geoip_open() in /home/fuiba/public_html/index.php on line 3

The GeoIP is installed in the Server. I checked it on info.php: geoip version 1.0.8.

enter image description here

  • 写回答

1条回答 默认 最新

  • dpvr49226 2014-09-26 15:01
    关注

    You can't include a php.ini with a php script, and you don't need to since phpinfo() return that it's already installed.

    What you need to do in order to make GeoLite work is to first include geoip.inc file include("include/geoip.inc");

    Here is where you can find it if you don't already have it : https://github.com/maxmind/geoip-api-php/blob/master/src/geoip.inc

    <?php
       include("include/geoip.inc");
       $country = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);
    
        geoip_close($gi);
        $my_countries = 'fr';
        if (strtolower($country) == $my_countries) {
            header('Location: fr.fuiba.org');
        }
        $my_countriessss = 'us';
        if (strtolower($country) == $my_countriessss) {
            header('Location: en.fuiba.org');
        }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable