adamsalter / sitemap_generator

This plugin enables 'enterprise-class' Google Sitemaps to be easily generated for a Rails site as a rake task, using a simple 'Rails Routes'-like DSL. It allows you to take care of familiar Sitemap issues like: Gzip of Sitemap files, variable priority links, paging/sorting links (e.g. my_list?page=3), SSL host links (e.g. https:), Rails apps which are installed on a sub-path (e.g. example.com/blog_app/) and hidden AJAX routes. It includes a Sitemap Index file so it supports more than the standard 50,000 individual urls (up to a maximum of 2.5 billion), and pings all major search engines on completion (Google, Yahoo, MSN, Ask, SitemapWriter).
MIT License
268 stars 304 forks source link

Yahoo 403 #7

Closed ghazel closed 14 years ago

ghazel commented 14 years ago

Sitemap stats: 436,086 links, 142m20s Successful ping of Bing Successful ping of Ask Successful ping of Sitemap Writer Successful ping of Google Ping failed for Yahoo: #<OpenURI::HTTPError: 403 Forbidden>

kjvarga commented 14 years ago

For now, if you add this to your config/sitemap.rb file, it should stop trying to ping Yahoo:

SitemapGenerator::Sitemap.yahoo_app_id = false

ghazel commented 14 years ago

Ah, I upgraded and saw the helpful message about how to get an app id. I got one, and now pinging Yahoo works.

So, yay!

kjvarga commented 14 years ago

Good to hear :)