• Hello,

    the latest version gives this fatal error:

    PHP Fatal error: Uncaught Error: Call to undefined function get_home_path() in /wp-content/plugins/wp-gpx-maps/wp-gpx-maps_utils.php:67

    Luckily it’s simple to solve: just change the wp_gpx_maps_sitePath() function in wp-gpx-maps_utils.php to:

    function wp_gpx_maps_sitePath()
    {
    	require_once(ABSPATH . 'wp-admin/includes/file.php');
    	return substr(get_home_path(), 0, -1);
    }

    Hope it helps!

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Fatal error in version 1.5.02’ is closed to new replies.