Could you try to deactivate the sitemap feature under Jetpack > Settings in your dashboard, and then activate it again? Let me know how that goes.
Yoast has a sitemap too, conflicting issues with that sitemap ? not the same url though.
Yoast has a sitemap too, conflicting issues with that sitemap ? not the same url though.
Jetpack’s sitemap should not be activated at all if you already use Yoast’s Sitemap. You don’t really need 2 sitemaps 🙂
To find out what’s happening we will need to run more tests. Could you add the following to your site’s wp-config.php file?
define( 'WP_DEBUG', true );
if ( WP_DEBUG ) {
@error_reporting( E_ALL );
@ini_set( 'log_errors', true );
@ini_set( 'log_errors_max_len', '0' );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'CONCATENATE_SCRIPTS', false );
define( 'SAVEQUERIES', true );
}
Your wp-config.php file may already include a line that says “define(‘WP_DEBUG’, false);”. You can remove it, and replace it by the code above.
Once you’ve done so, try to deactivate and reactivate the sitemap feature. Then check the wp-content/debug.log file for errors, and paste the results here. You can then replace define('WP_DEBUG', true); by define('WP_DEBUG', false); in the code above.
Let me know what you find!