Viewing 2 replies - 1 through 2 (of 2 total)
  • Bad localization, as usual with this plugin.

    In wp-content/plugins/google-sitemap-generator/sitemap-core.php, line 2232,

    if($pingres==NULL || $pingres===false || strpos($pingres,"Thanks for submitting your sitemap")===false) {

    varies by country. For exemple, in France, “Thanks for submitting your sitemap” is “Merci d’avoir envoye…

    Turnaround :

    if( $pingres==NULL || $pingres===false || (stripos($pingres,"Thanks")===false && stripos($pingres,"Merci")===false) )

    Just add the translation of “Thanks” in your language instead of “Merci”.
    Note that I replaced strpos by stripos to be case-insensitive.

    Enjoy,
    Gerard

    Unfortunately Bing always responds by getting the country by IP address. There is now way to force Bing to reply in English ??

    The new beta version doesn’t do this check anymore:

    https://www.arnebrachhold.de/redir/sitemap-dl-beta/

    @gerhard: “as usual with this plugin”, what other localization problems do you have?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Google XML Sitemaps] This can't do Bing for some reason…’ is closed to new replies.