↑ Top
Validation Output: 46 Errors
1. Error Line 91, Column 16: "DOCTYPE" declaration not allowed in instance
doctype: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"
✉
2. Error Line 164, Column 27: character "\" not allowed in attribute specification list
if (content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i)) {
✉
3. Error Line 164, Column 27: document type does not allow element "hr" here
if (content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i)) {
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
4. Error Line 164, Column 28: end tag for "hr" omitted, but OMITTAG NO was specified
if (content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i)) {
✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
5. Info Line 164, Column 23: start tag was here
if (content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i)) {
6. Error Line 168, Column 51: document type does not allow element "hr" here
jInsertEditorText('<hr id="system-readmore" />', editor);
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
7. Error Line 628, Column 85: document type does not allow element "p" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
… font-weight: bold; color: #474a44;">Veuillez nous contacter par le formulair
✉
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
8. Error Line 636, Column 91: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
…"radio" value="Pertinent" checked />
✉
"VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.
How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...
9. Error Line 638, Column 44: ID "avis" already defined
…class="ckCSStop10 " name="avis" id="avis" type="radio" value="Intéressant" …
✉
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
10. Info Line 636, Column 43: ID "avis" first defined here
… class="ckCSStop10 " name="avis" id="avis" type="radio" value="Pertinent" che
11. Error Line 640, Column 44: ID "avis" already defined
…class="ckCSStop10 " name="avis" id="avis" type="radio" value="Manque des info
✉
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
12. Info Line 636, Column 43: ID "avis" first defined here
… class="ckCSStop10 " name="avis" id="avis" type="radio" value="Pertinent" che
13. Error Line 642, Column 44: ID "avis" already defined
…class="ckCSStop10 " name="avis" id="avis" type="radio" value="Sans intérêt"
✉
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
14. Info Line 636, Column 43: ID "avis" first defined here
… class="ckCSStop10 " name="avis" id="avis" type="radio" value="Pertinent" che
15. Error Line 644, Column 132: required attribute "alt" not specified
…re part de votre avis sur ce site" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
16. Error Line 645, Column 28: Attribute "htmlfor" is not a valid attribute
<div class="error" htmlfor="avis">
✉
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
17. Error Line 656, Column 104: required attribute "alt" not specified
…ng" title="Le nom est obligatoire" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
18. Error Line 668, Column 107: required attribute "alt" not specified
… title="Le prénom est obligatoire" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
19. Error Line 679, Column 113: required attribute "alt" not specified
…="Veuillez indiquer votre adresse" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
20. Error Line 684, Column 114: required attribute "alt" not specified
…"Veuillez indiquer votre localité" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
21. Error Line 689, Column 110: required attribute "alt" not specified
…tle="Veuillez indiquer votre pays" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
22. Error Line 695, Column 106: required attribute "alt" not specified
…" title="L'e-mail est obligatoire" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
23. Error Line 705, Column 108: required attribute "alt" not specified
…title="Le message est obligatoire" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
24. Error Line 728, Column 138: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
…la lettre d'information" checked />
✉
"VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.
How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...
25. Error Line 729, Column 153: required attribute "alt" not specified
…nscrire à la lettre d'information" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
26. Error Line 740, Column 133: required attribute "alt" not specified
…quer votre niveau de connaissance" />
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
27. Error Line 744, Column 136: value of attribute "align" cannot be "absmiddle"; must be one of "top", "middle", "bottom", "left", "right"
…a3357da92fd49c2457" align="absmiddle">
✉
The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.
28. Error Line 744, Column 137: required attribute "alt" not specified
…3357da92fd49c2457" align="absmiddle">
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
29. Error Line 744, Column 138: end tag for "img" omitted, but OMITTAG NO was specified
…357da92fd49c2457" align="absmiddle">
✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
30. Info Line 744: start tag was here
p<img class="captchacode" src="/index.php?option=com_ckforms&task=captcha&
31. Error Line 745, Column 124: value of attribute "align" cannot be "absmiddle"; must be one of "top", "middle", "bottom", "left", "right"
…images/refresh.gif" align="absmiddle">
✉
The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.
32. Error Line 745, Column 126: end tag for "img" omitted, but OMITTAG NO was specified
…ages/refresh.gif" align="absmiddle">
✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
33. Info Line 745: start tag was here
c<img alt="Refresh Captcha" class="captcharefresh" src="/components/com_ckforms/c
34. Error Line 748, Column 52: duplicate specification of attribute "class"
<div class="error" htmlfor="ck_captcha_code" class="error">
✉
You have specified an attribute more than once. Example: Using the "height" attribute twice on the same "img" tag.
35. Warning Line 722, Column 49: reference to non-existent ID "fichier"
<label class="ckCSSlabel " id="fichierlbl" for="fichier"> Joindre un fichier
✉
This error can be triggered by:
* A non-existent input, select or textarea element
* A missing id attribute
* A typographical error in the id attribute
Try to check the spelling and case of the id you are referring to.
36. Error Line 91, Column 14: XML Parsing Error: StartTag: invalid element name
doctype: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"
✉
37. Error Line 164, Column 26: XML Parsing Error: error parsing attribute name
if (content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i)) {
✉
38. Error Line 164, Column 26: XML Parsing Error: attributes construct error
if (content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i)) {
✉
39. Error Line 164, Column 26: XML Parsing Error: Couldn't find end of Start Tag hr line 164
if (content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i)) {
✉
40. Error Line 630, Column > 80: XML Parsing Error: attributes construct error
…amp;view=ckforms&task=send&id=1" method="post" id="ckform" class="for…
✉
41. Error Line 630, Column > 80: XML Parsing Error: Couldn't find end of Start Tag form line 630
…amp;view=ckforms&task=send&id=1" method="post" id="ckform" class="for…
✉
42. Error Line 636, Column > 80: XML Parsing Error: Specification mandate value for attribute checked
…avis" type="radio" value="Pertinent" checked />…
✉
43. Error Line 728, Column > 80: XML Parsing Error: Specification mandate value for attribute checked
…="lettre" type="checkbox" value="Je souhaite m'inscrire à la lettre d'informa…
✉
44. Error Line 748, Column 58: XML Parsing Error: Attribute class redefined
<div class="error" htmlfor="ck_captcha_code" class="error">
✉
45. Error Line 751, Column 6: XML Parsing Error: Opening and ending tag mismatch: img line 745 and div
</div>
✉
46. Error Line 756, Column 7: XML Parsing Error: Opening and ending tag mismatch: img line 744 and form
</form>
✉
47. Error Line 757, Column 5: XML Parsing Error: Opening and ending tag mismatch: div line 743 and td
</td></tr>
✉
48. Error Line 757, Column 10: XML Parsing Error: Opening and ending tag mismatch: td line 627 and tr
</td></tr>
✉
49. Error Line 758, Column 8: XML Parsing Error: Opening and ending tag mismatch: tr line 627 and table
</table>
✉
50. Error Line 759, Column 6: XML Parsing Error: Opening and ending tag mismatch: table line 626 and div
</div>
✉
51. Error Line 845, Column 9: XML Parsing Error: Opening and ending tag mismatch: div line 248 and body
</body>
✉
52. Error Line 846, Column 7: XML Parsing Error: Opening and ending tag mismatch: body line 220 and html
</html>
✉
53. Error Line 846, Column 7: XML Parsing Error: Premature end of data in tag html line 3
</html>
I can PM you the details of my test site.
Otherwise I passed through CKForm SARKI it is great except these problems with W3C compliance.
Tank You
Teophile