Digital Point User Map

Digital Point User Map 1.3.2

No permission to download
Is there a way to show a smaller region by default yet? Also it shows I'm in Brussels while I'm much closer to Antwerp :)
 
Last edited:
Yep, MaxMind had my IP (when I was on DSL) showing to be 140 miles from where it is. The geolocation by IP is just based upon the address reported to them from what I understand.
 
@digitalpoint, I just got this error:

Code:
Server Error Log
Error Info
ErrorException: Fatal Error: Cannot use object of type XenForo_Phrase as array - library/DigitalPointUserMap/ControllerPublic/Member.php:14
Generated By: Unknown Account, Today at 8:06 AM
Stack Trace

#0 [internal function]: XenForo_Application::handleFatalError()
#1 {main}

Request State

array(3) {
  ["url"] => string(40) "http://domain name/online/?type=robot"
  ["_GET"] => array(1) {
    ["type"] => string(5) "robot"
  }
  ["_POST"] => array(0) {
  }
}
 
Pretty sure they are a bot hitting it.

There is a bug with User Map.

Steps to reproduce:

Use two web browsers, one as a guest and one as a member.

1. Klick on "User Map" as a member.
2. Use another browser as another user (guest) to view your member card, that will trigger the error.

A way around this:

library/DigitalPointUserMap/ControllerPublic/Member.php
Line 14

$output[$key] = array (

Change to:


$output->$key = array (
 
Last edited:
So looks like GeoIP has been superseded GeoIP2 API according to the link. Does this work with maxmind's geoip2 api?
 
So looks like GeoIP has been superseded GeoIP2 API according to the link. Does this work with maxmind's geoip2 api?
Since it doesn't make calls to the GeoIP API from MaxMind (it uses PHP GeoIP direct to a DB on your system) it appear to be still working. You pull the DB in from MaxMind to your system regularly, normally via a CRON job.

Screen Shot 2015-07-10 at 3.01.51 AM.webp
 
The only thing I can think of is that Google is requiring your domain to have a maps API for some reason. Do you use Google Maps for other things on your domain, and if so, what?
 
Hmmm... honestly not really sure, although it wouldn't be terribly difficult to add an API key... assuming you have one or can get one?
 
Back
Top Bottom