Title: Possible plugin conflicts
Last modified: August 24, 2016

---

# Possible plugin conflicts

 *  Resolved [TouchWare](https://wordpress.org/support/users/touchware/)
 * (@touchware)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/)
 * Hi Norbert,
 * I’m getting a large number of error messages – well the same two repeated multiple
   times – reported in the admin area when certain other plugins are run.
 * The most obvious is UberMenu 3 (version 3.1.1), where updating the (UberMenu 
   controlled) WordPress Menu displays the following two error notices dozens of
   times (it’s a long menu)
 * `Notice: Use of undefined constant SGMP_DB_GEOMASHUP_DATA_CACHE - assumed 'SGMP_DB_GEOMASHUP_DATA_CACHE'
   in /home/blind/virtual_hosts/site23/wp-content/plugins/slick-google-map/functions.
   php on line 927 Notice: Use of undefined constant SGMP_DB_GEOMASHUP_DATA_CACHE_TIME-
   assumed 'SGMP_DB_GEOMASHUP_DATA_CACHE_TIME' in /home/blind/virtual_hosts/site23/
   wp-content/plugins/slick-google-map/functions.php on line 928`
 * Better Delete Revision (version 1.6.1) also generates the same errors, again 
   once for each deleted resision I believe.
 * The Slick Map plugin itself appears to work very well and there are no errors
   reported when using it.
 * The error notices don’t appear to have any negative affect on either action but
   it is a little disconcerting… any ideas?
 * Thanks
    Paul
 * [https://wordpress.org/plugins/slick-google-map/](https://wordpress.org/plugins/slick-google-map/)

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Plugin Author [Norbert](https://wordpress.org/support/users/norbusan/)
 * (@norbusan)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034060)
 * I guess these plugins are changing the setup so that you run in debug mode, is
   this possible?
 * I see similar errors in my test domain in debug mode, and I want to eliminate
   them for the next release, but haven’t seen any impact on real operation.
 *  Thread Starter [TouchWare](https://wordpress.org/support/users/touchware/)
 * (@touchware)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034065)
 * On the actual web server debug mode is off, but on my development server I always
   have it on. The operation of those plugins is simply where I’ve noticed the problem.
 * I also haven’t noticed any real impact from it, I just wanted to be certain. 
   As it’s a known issue I’ll just wait for an update.
 * Thanks
    Paul
 *  Plugin Author [Norbert](https://wordpress.org/support/users/norbusan/)
 * (@norbusan)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034107)
 * As said, I try to get rid of them for the next release
 *  Plugin Author [Norbert](https://wordpress.org/support/users/norbusan/)
 * (@norbusan)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034119)
 * Ok, these are harmless messages and I have fixed that problem in the git version.
   Next release will contain the fixes.
 *  [drtonyb](https://wordpress.org/support/users/drtonyb/)
 * (@drtonyb)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034143)
 * I’ve been using CGMP for some time now and I am glad to see someone has taken
   up the plugin’s development – thanks and well done Norbert.
 * Just wondering whether the update to fix this issue has been released?
 * I’ve just installed the plugin ver 0.2 and on activation, I get ‘PHP Notice: 
   Use of undefined constant…’ in my php error log for the constants:
 * SGMP_DB_GEOMASHUP_DATA_CACHE
    SGMP_DB_GEOMASHUP_DATA_CACHE_TIME SGMP_INITIAL_WARNING
 * on lines 753, 754 and 755 of the plugin’s function.php.
 * A bit of debugging revealed that definitions for these constants have been removed
   from the /data/plugin.constants.json file in the migration from CGMP to SGMP.
 * On activation, the sgmp_on_activate_hook() function is updating (initialising)
   options referenced by these constants, generating the errors.
 * It appears that SGMP_INITIAL_WARNING is not used anywhere in the plugin (nor 
   was it used in CGMP) and its initialisation in sgmp_on_activate_hook() should
   be removed.
 * The other two constants are used together in 10 other places in the functions.
   php file, so I think it would be prudent to put their definitions back in the/
   data/plugin.constants.json file until the reason for their removal has been more
   thoroughly considered.
 * Tony
 *  Plugin Author [Norbert](https://wordpress.org/support/users/norbusan/)
 * (@norbusan)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034144)
 * Hi
    thanks for your research. I have fixed the warnings in git, but haven’t release
   a new version.
 * The simplest change would be to apply the following patch to `data/plugin.constants.
   json`:
 *     ```
       @@ -1,9 +1,11 @@
        [ {
            "SGMP_DB_POST_COUNT" : "sgmp_total_published_posts",
            "SGMP_DB_PUBLISHED_POST_MARKERS" : "sgmp_published_post_markers",
       -       "SGMP_DB_PUBLISHED_POST_IDS" : "sgmp_published_post_ids",
       -       "SGMP_DB_PUBLISHED_PAGE_IDS" : "sgmp_published_page_ids",
       -       "SGMP_DB_PURGE_GEOMASHUP_CACHE" : "sgmp_purge_geomashup_cache",
       +    "SGMP_DB_PUBLISHED_POST_IDS" : "sgmp_published_post_ids",
       +    "SGMP_DB_PUBLISHED_PAGE_IDS" : "sgmp_published_page_ids",
       +    "SGMP_DB_PURGE_GEOMASHUP_CACHE" : "sgmp_purge_geomashup_cache",
       +    "SGMP_DB_GEOMASHUP_DATA_CACHE" : "sgmp_geomashup_data_cache",
       +    "SGMP_DB_GEOMASHUP_DATA_CACHE_TIME" : "sgmp_geomashup_data_cache_time",
   
            "SGMP_ALL_MAP_CACHED_CONSTANTS_PREFIX" : "sgmp_cache_",
       ```
   
 * I am still fighting with getting html descriptions to be possible, and will release
   when that is done.
 * Hope that helps.
 * In case you want to contribute, please go ahead and send me pull requests 😉
 * Nobert
 *  [drtonyb](https://wordpress.org/support/users/drtonyb/)
 * (@drtonyb)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034145)
 * Thanks for that Norbert.
 * I had already added the missing constants to the .json file on local my development
   machine.
 * You can’t use html in the title attribute – you’ll need to make your own tooltip
   from an html element like a div.
 * Tony
 *  Plugin Author [Norbert](https://wordpress.org/support/users/norbusan/)
 * (@norbusan)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034146)
 * Hi Tony
 * yeah, by now one cannot add HTML code in the description of a marker, but that
   is something I want to change, i.e. to allow both simple markdown and also html.
 * We’ll see
 * Norbert

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Possible plugin conflicts’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/slick-google-map_92958e.svg)
 * [Slick Google Map](https://wordpress.org/plugins/slick-google-map/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slick-google-map/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slick-google-map/)
 * [Active Topics](https://wordpress.org/support/plugin/slick-google-map/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slick-google-map/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slick-google-map/reviews/)

 * 8 replies
 * 3 participants
 * Last reply from: [Norbert](https://wordpress.org/support/users/norbusan/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/possible-plugin-conflicts/#post-6034146)
 * Status: resolved