marcooderkerk
Forum Replies Created
-
Forum: Plugins
In reply to: [2FAS Classic - Two Factor Authentication] phpErrorlog entries DB errorHi , no it doesn’t help but i found the error.
i guess because my wordpress db had been created with wp 4.? my users table was myisam.
the twofas_trusted_devices is innodb.
as i know there is no possibility to add a foreign key constraint on myisam. i switched to innodb an create the table manually.Forum: Plugins
In reply to: [WP GPX Maps] Uncaught Error: Bounds are not valid.I changed temporary the following line in the WP-GPX.js of the plugin (line 889)
fromif (!jQuery.isEmptyObject(waypoints))
to
if (!jQuery.isEmptyObject(waypoints) && waypoints.length)
till the official update is comming. for me it works.
The Error in my case results from an empty waypoint array and the isEmptyObject does not get it correctlyForum: Plugins
In reply to: [WP GPX Maps] Uncaught Error: Bounds are not valid.It looks like that the secon gpx file doesn’t contain any waypoints.
It could be the ifif (!jQuery.isEmptyObject(waypoints))
{
map.AddWaypoints(waypoints, waypointIcon);
}in WP-GPX-MAPS.js. During debug it has a zize of zero
length
:
0
__proto__
:
Array(0)so a waypoints.length could maybe help.
Forum: Plugins
In reply to: [WP GPX Maps] Uncaught Error: Bounds are not valid.Managed to get one map running, after I raised the map height. the second map is still not working with the same error so i guess each map needs it individual bounds information.