• Resolved viperxd

    (@viperxd)


    $userInfo = geoip_detect_get_info_from_current_ip();
    print_r($userInfo);
    if ($userInfo && $userInfo->country_name == “Israel”){}

    Is this code ok?
    I was using it to display something for israeli visitors but the function is returning my server’s ip and info only (worked before)

    https://wordpress.org/plugins/geoip-detect/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Benjamin Pick

    (@benjamin4)

    Normally it should only use the server IP if you have a localhost-Server (thus the IP of the client is not geo-specific). Can you tell me an IP from Israel for testing?

    Thread Starter viperxd

    (@viperxd)

    I’m not from Israel, I usually just search for proxies.
    81.199.2.116
    212.25.95.135
    192.114.168.134
    81.199.171.56

    Using the test tool available at the admin panel of the plugin, it identifies the proxies IPs as israelis.

    If I use the proxy to access it it doesn’t appear to work

    Hello, Benjamin. Thank you for your work. This country based css is exactly what I need. Unfortunately, I got the same issue as ViperXd. Plugin detects my server IP instead of visitor’s. Is there any possible way to fix it?

    Plugin Author Benjamin Pick

    (@benjamin4)

    Oh, does your server use a reverse proxy?

    (How to find out: look at var_dump($_SERVER) and tell me which array key contains your IP.)

    Plugin Author Benjamin Pick

    (@benjamin4)

    I have added reverse proxy support now. Please try the development version:

    https://github.com/yellowtree/wp-geoip-detect/archive/master.zip

    You will have to enable it in the options.

    Thank you, Benjamin. That’s the answer!
    Here are my results:
    I ran var_dump($_SERVER) and got there: [“HTTP_X_FORWARDED_FOR”]=> [my real ip]
    I installed dev version, and its immediately showed: The server is behind a reverse proxy (With Proxy: [my real ip] – Without Proxy: [server ip])
    But for some time it doesn’t detect my ip on front-end correctly, it still was ip of the server. Few hours later (I was busy, changed nothing) I discovered everyrhing works like a charm (guess it’s cache thing).
    It’s the most efficient way to implement geo-targeting without one tiny change in css. Excellent work! Thank you very much!

    Plugin Author Benjamin Pick

    (@benjamin4)

    Version 1.8 was now released.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘detecting server IP instead of visitor's’ is closed to new replies.