Identify traffic before show page?

by 3 replies
4
Hi,

i'm wondering what's best way to detect and identify traffic when then click link to your site?

I don't want to show same page to all people, because I translated now in some other languages and I want 'script' that will do that automatic.


Any suggestions?


Thanks
#programming #identify #page #show #traffic
  • Yes, you can. How it's done is by filtering the IP addresses. I'm sure there are ready scripts out there, just search for them.
  • Any opinion where to find such a script / module / widget?

    Thank you.
    • [1] reply
    • so it is geo-locating, right?
      you deliver / show spesific content to spesific user based on location?

      the logic is ->
      1. get visitor ip
      2. do translate ip to location (country)
      3. show depends on country

      script ->
      1. $ip_address = getenv(REMOTE_ADDR);
      2. http://api.ipinfodb.com/v2/ip_query_country.php?key=<your_api_key>&ip=$ip_add ress
      3. make your own

Next Topics on Trending Feed