Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9055663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T14:00:51+00:00 2026-06-16T14:00:51+00:00

I’m trying to validate this sitemap: http://animal.org.il/post.xml using this validation tool: http://www.xmlcheck.com/checkurl.php I’m getting

  • 0

I’m trying to validate this sitemap: http://animal.org.il/post.xml
using this validation tool: http://www.xmlcheck.com/checkurl.php

I’m getting this error on all the image:image tages:
Error 1845: Element ‘{http://www.google.com/schemas/sitemap-image/1.1}image’: No matching global element declaration available, but demanded by the strict wildcard.

Here is a snippet of the current source of my sitemap showing some of those image:image tags:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://animal.org.il/wp-content/plugins/bwp-google-xml-sitemaps/xsl/bwp-sitemap.xsl"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">

<url>
    <loc>http://animal.org.il/to-be-goose/</loc>
    <lastmod>2012-07-24T09:57:18+00:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.4</priority>
    <image:image>
      <image:loc>http://animal.org.il/wp-content/gallery/goose/goose-nature.jpg</image:loc>
      <image:title>אווז בטבע</image:title>
      <image:caption>אווז בטבע עף על פני מאות קילומטרים מדי שנה, אך בתעשיית הבשר והנוצות הוא לא יזכה לפרוש כנף לעולם.</image:caption>
    </image:image>
    <image:image>
      <image:loc>http://animal.org.il/wp-content/gallery/goose/goose-feathers.jpg</image:loc>
      <image:title>תעשיית הנוצות</image:title>
      <image:caption>אווז ממשש במקורו את העור החשוף לאחר מריטת נוצותיו. מתוך תחקיר על תעשיית ה&lt;a href="http://anonymous.org.il/cat40.html" target="_blank"&gt;נוצות&lt;/a&gt; של הטלוויזיה השוודית (Kalla Fatka, TV4)</image:caption>
    </image:image>
    <image:image>
      <image:loc>http://animal.org.il/wp-content/gallery/goose/goose-foie-gras.jpg</image:loc>
      <image:title>כך מייצרים כבד אווז</image:title>
      <image:caption>על מנת לייצר &lt;a href="http://anonymous.org.il/cat14.html" target="_blank"&gt;כבד אווז&lt;/a&gt;, מפטמים את האווז באמצעות החדרת צינור מתכת לגרונו.</image:caption>
    </image:image>
  </url>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T14:00:52+00:00Added an answer on June 16, 2026 at 2:00 pm

    By default, the validation service you are using seems to be using the sitemap schema at http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd to validate the sitemap document. That schema has a wildcard that will match your image:image elements, but those elements are declared in a separate schema document at http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd and not in the schema being used. As the error message says, the wildcard in question is a ‘strict’ one, meaning the elements it matches must be declared in the schema.

    There may be a way to tell the validator to consult the schema document for the image namespace, but I could not see any obvious one. You could add an xsi:schemaLocation attribute to your sitemap document, so your root element looks like this:

    <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" 
      xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
      xsi:schemaLocation="
        http://www.sitemaps.org/schemas/sitemap/0.9
        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
        http://www.google.com/schemas/sitemap-image/1.1
        http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" >
    

    This is not usually the best way to tell a schema validator where to find the schema, but it often works. Not in this case, however.

    On the other hand, for documents you upload, the validation service you are using allows you also to upload a schema document. If you make a schema document that just imports the two schema documents you want, for the sitemap and sitemap-image namespaces, as shown below, and upload it along with your sitemap, your errors with the image elements go away. If you are validating your sitemap from the Web, and not by uploading it, there may be another way to get the validator to use the right schema; you’ll have to look for documentation or ask the operators of the service for information.

    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    
      <xs:import namespace="http://www.sitemaps.org/schemas/sitemap/0.9"
                 schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"/>
      <xs:import namespace="http://www.google.com/schemas/sitemap-image/1.1"
                 schemaLocation="http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd"/>
    
    </xs:schema>
    

    In their place, you have errors complaining about the image:caption element, which should precede, not follow, image:title. When those are fixed, your site map is recognized as valid.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like my Web page http://www.gmarks.org/math_in_e-mail.txt on my Apache 2.2.14 server to display
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I'm not entirely sure how I managed to jack this up. http://pretty-senshi.com If you
I'm trying to create an if statement in PHP that prevents a single post
Let's say I'm outputting a post title and in our database, it's Hello Y&#8217;all
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I am trying to understand how to use SyndicationItem to display feed which is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.