dontosde
Forum Replies Created
-
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Markers disappear after SSL switchThe direct link to the map is:
https://www.dontox.de/google-maps/visa-auszahlungsprobleme/There should be about 150 markers. Since we switched to SSL they disappeared; but they are still in the database but not connected to the map.
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Markers disappear after SSL switchYou can find the map on this page, right above the comments:
https://www.dontox.de/431-die-visa-verweigerer-auszahlungsprobleme-mit-den-kreditkarten-der-direktbanken/Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Markers disappear after SSL switchThanks for your reply, Matt.
With the “Better Search Replace” plugin I replaced all the entries in the database tables wp_options, wp_postmeta and wp_posts from the http://-url to the https://-url. Additionally I replaced in all the tables the tag “http://maps.google.com/maps” with “https://maps-api-ssl.google.com/maps”.
But the markers on the map have not appeared yet. Do I need to update any other table? Is there any other reason why the markers don’t appear any more?
It’s not problem to add a new map with new markers. They appear.
Thank you.
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Markers disappear after SSL switchFor the ssl switch we executed these MySQL commands:
UPDATE wp_options SET option_value = replace(option_value, ‘http://www.ihreseite.de’, ‘https://www.ihreseite.de’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
UPDATE wp_posts SET guid = replace(guid, ‘http://www.ihreseite.de’,’https://www.ihreseite.de’);
UPDATE wp_posts SET post_content = replace(post_content, ‘http://www.ihreseite.de’, ‘https://www.ihreseite.de’);
UPDATE wp_postmeta SET meta_value = replace(meta_value,’http://www.ihreseite.de’,’https://www.ihreseite.de’);
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Markers don’t appear steadyThanks for your answer! We are now using a caching plugin – it works.