Making WordPress.org

Opened 4 years ago

Closed 4 years ago

#5025 closed defect (bug) (fixed)

Plugins with 'noindex' rules should be excluded from XML sitemaps

Reported by: jonoaldersonwp's profile jonoaldersonwp Owned by: dd32's profile dd32
Milestone: Priority: normal
Component: Plugin Directory Keywords: seo
Cc:

Description

Plugins such as https://wordpress.org/plugins/narnoo-shortcodes/, which output a meta robots tag which includes a noindex value, should be removed/excluded from XML sitemaps (e.g., https://wordpress.org/plugins/sitemap-index-1.xml
)

Change History (5)

This ticket was mentioned in Slack in #meta by bradleyt. View the logs.


4 years ago

#2 @Otto42
4 years ago

  • Resolution set to invalid
  • Status changed from new to closed

AFAIK, we don't have any sitemaps on w.org.

There is a feature in Jetpack that can generate sitemaps, but that should be turned off on all the sites by default? It might have been on for some reason earlier, but appears to be off now.

Closing this since there isn't a sitemap, but if we decide to make one happen, then things like this should be considered in a more overarching ticket.

#3 @dd32
4 years ago

  • Owner set to dd32
  • Resolution changed from invalid to fixed

In 9506:

Plugin Directory: Skip outdated plugins from being included in the Jetpack Sitemaps.

This may cause OOM fatals due to the usage of get_post() in Template::is_plugin_outdated() which may exhaust the in-memory object-cache cache.

Fixes #5025.

#4 @dd32
4 years ago

  • Resolution fixed deleted
  • Status changed from closed to reopened

This may cause OOM fatals due to the usage of get_post() in Template::is_plugin_outdated() which may exhaust the in-memory object-cache cache.

As expected:

Allowed memory size of 268435456 bytes exhausted (tried to allocate 20480 bytes)
Timestamp: Mon, 09 Mar 2020 01:11:28 +0000 (1583716288)
File: object-cache.php
Line: 234
Filter stack: jp_sitemap_cron_hook, jetpack_sitemap_skip_post
Current filter: jetpack_sitemap_skip_post
- attached to priority 10: WordPressdotorg\Plugin_Directory\Plugin_Directory->jetpack_sitemap_skip_post

I guess we'll have to clear the in-memory cache occasionally

#5 @dd32
4 years ago

  • Resolution set to fixed
  • Status changed from reopened to closed

In 9650:

Plugin Directory: Clear memcache/db in-memory caches during XML Sitemap generation.

Fixes #5025.

Note: See TracTickets for help on using tickets.