(Hope the 3rd edit is the good one)
Hello,
Testing the latest version WP GPX Maps (1.1.25) in my site http://gpstracks.tv I have realized that there is a bug which is preventing the application from accessing uploaded GPX tracks. In line 176 of file wp-gpx-maps.php it is written:
if (strpos($gpx, "http://") !== 0 || strpos($gpx, "https://") !== 0)
where it should say
if (strpos($gpx, "http://") !== 0 && strpos($gpx, "https://") !== 0)
Notice the change of || by &&
Cheers,