Viewing 15 replies - 1 through 15 (of 16 total)
  • Plugin Author supsystic

    (@supsysticcom)

    Hello!
    I’m sorry for late reply.
    As I see now everything is working fine – http://prntscr.com/f858tu
    Has your problem been solved?

    sunnyww

    (@sunnyww)

    The same thing happened to me. It’s only in the admin that they disappeared. The actual map on the site displayed with a shortcode is showing up fine. But when I log in and click on “All Maps” or “Add a Map,” it’s just a blank white screen.

    Thread Starter travelpixelz

    (@travelpixelz)

    hey,

    thanks for your reply. It works again. Apparently the problem was, that I used a plugin – Fast Velocity Minify – which I supposed to minify the JS.

    After switching it of, everything worked again.

    Thanks and cheers
    fabian

    sunnyww

    (@sunnyww)

    This is the error I’m seeing in the console when I try to pull up the admin area for the maps:

    TypeError: jQuery(…).jqGrid is not a function[Learn More] admin.gmap.list.js:3:2

    eseo

    (@eseo)

    I am also experiencing exactly what sunnyww is experiencing.

    “The same thing happened to me. It’s only in the admin that they disappeared. The actual map on the site displayed with a shortcode is showing up fine. But when I log in and click on “All Maps” or “Add a Map,” it’s just a blank white screen.”

    Same here. On multiple websites.

    
    Uncaught TypeError: jQuery(...).jqGrid is not a function  ...  admin.gmap.list.js?ver=1.7.4:3
        at HTMLDocument.<anonymous> (admin.gmap.list.js?ver=1.7.4:3)
        at i (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,plupload&ver=4.7.4:2)
        at Object.fireWith [as resolveWith] (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,plupload&ver=4.7.4:2)
        at Function.ready (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,plupload&ver=4.7.4:2)
        at HTMLDocument.K (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,plupload&ver=4.7.4:2)
    
    kn784

    (@kn784)

    Hello,
    same issue here. On multisite platform.
    TypeError: jQuery(“#”+ tblId).jqGrid is not a function. (In ‘jQuery(“#”+ tblId).jqGrid’, ‘jQuery(“#”+ tblId).jqGrid’ is undefined)

    Is there a problem with the plugin? Nothing changed on our installation.

    web240

    (@web240)

    Hello.
    I try to install old version (1.7.1) and same issue here.

    MarkTheBest

    (@markthebest)

    MarkTheBest

    (@markthebest)

    Find solution!
    open file /plugins/google-maps-easy/modules/templates/mod.php

    change code on 12 row
    from:
    if(uriGmp::isHttps()) {
    $this->_cdnUrl = ‘https://supsystic.com/&#8217;;
    } else {
    $this->_cdnUrl = ‘http://cdn.supsystic.com/&#8217;;
    }
    to:
    $this->_cdnUrl = ‘https://supsystic.com/&#8217;;

    shshop24

    (@shshop24)

    Your hint is producing a syntax error. It works if you do this:
    change code on 12 row
    from:

    if(uriGmp::isHttps()) {
    $this->_cdnUrl = ‘https://supsystic.com/’;
    } else {
    $this->_cdnUrl = ‘http://cdn.supsystic.com/’;
    }

    to:

    if(uriGmp::isHttps()) {
    $this->_cdnUrl = ‘https://supsystic.com/’;
    } else {
    $this->_cdnUrl = ‘http://.supsystic.com/’;
    }
    Plugin Author supsystic

    (@supsysticcom)

    I’m sorry for these inconvenience.
    We have some problem with our CDN server. Currently we are working on this problem.

    I’ll inform you about the results.

    kn784

    (@kn784)

    Thank you @shshop24 and @markthebest. It is working now to me too..
    Just inform the correct code is:

    if(uriGmp::isHttps()) {
    $this->_cdnUrl = ‘https://supsystic.com/’;
    } else {
    $this->_cdnUrl = ‘http://supsystic.com/’;
    }
    Plugin Author supsystic

    (@supsysticcom)

    We just fixed the problem with our CDN server. Check the issues with google maps in admin area.

    Dear @kn784 , @shshop24 and @markthebest – please change the link in code to http://cdn.supsystic.com/ as it should be.

    • This reply was modified 9 years ago by supsystic.
    shshop24

    (@shshop24)

    Just checked, it is working again with the original code.

Viewing 15 replies - 1 through 15 (of 16 total)

The topic ‘All created maps disappeared’ is closed to new replies.