Wednesday, March 14, 2018

Most detailed analysis of Inoutscripts Shopping Cart Codes (514 bugs)

  1. Error Line 25, Column 37required attribute “type” not specified
     <script src="js/jquery-ui1.10.3.js"></script>
    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>.
  2. Warning Line 88, Column 32cannot generate system identifier for general entity “pro_qty”
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in “Ampersands in URLs“.
    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as “&amp;” (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.
    If this error appears in some markup generated by PHP’s session handling code, this article has explanations and solutions to your problem.
    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
  3. Error Line 88, Column 32general entity “pro_qty” not defined and no default entity
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  4. Warning Line 88, Column 39reference not terminated by REFC delimiter
       data: "cartid="+cartid+"&pro_qty="+pro_qty,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  5. Error Line 88, Column 39reference to entity “pro_qty” for which no system identifier could be generated
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  6. Info Line 88, Column 31entity was defined here
     data: "cartid="+cartid+"&pro_qty="+pro_qty,
  7. Warning Line 105, Column 40reference not terminated by REFC delimiter
    … data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+…
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  8. Error Line 105, Column 40reference to entity “pro_qty” for which no system identifier could be generated
    … data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+…
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  9. Info Line 88, Column 31entity was defined here
     data: "cartid="+cartid+"&pro_qty="+pro_qty,
  10. Warning Line 105, Column 53cannot generate system identifier for general entity “cartid”
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in “Ampersands in URLs“.
    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as “&amp;” (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.
    If this error appears in some markup generated by PHP’s session handling code, this article has explanations and solutions to your problem.
    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
  11. Error Line 105, Column 53general entity “cartid” not defined and no default entity
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  12. Warning Line 105, Column 59reference not terminated by REFC delimiter
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  13. Error Line 105, Column 59reference to entity “cartid” for which no system identifier could be generated
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  14. Info Line 105, Column 52entity was defined here
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
  15. Warning Line 105, Column 71cannot generate system identifier for general entity “userid”
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in “Ampersands in URLs“.
    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as “&amp;” (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.
    If this error appears in some markup generated by PHP’s session handling code, this article has explanations and solutions to your problem.
    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
  16. Error Line 105, Column 71general entity “userid” not defined and no default entity
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  17. Warning Line 105, Column 77reference not terminated by REFC delimiter
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  18. Error Line 105, Column 77reference to entity “userid” for which no system identifier could be generated
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  19. Info Line 105, Column 70entity was defined here
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
  20. Warning Line 111, Column 22character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  21. Warning Line 111, Column 23character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  22. Error Line 129, Column 36document type does not allow element “span” here
    view1 ='<span class="grnSuc"><b>'+view+'</b></span>';
    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).
  23. Error Line 134, Column 34document type does not allow element “span” here
    view1='<span class="grnSuc"><b>'+err+'</b></span>';
    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).
  24. Error Line 141, Column 36document type does not allow element “span” here
    view1 ='<span class="redEror"><b>'+error+'</b></span>';
    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).
  25. Warning Line 185, Column 40reference not terminated by REFC delimiter
    …  data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+…
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  26. Error Line 185, Column 40reference to entity “pro_qty” for which no system identifier could be generated
    …  data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+…
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  27. Info Line 88, Column 31entity was defined here
     data: "cartid="+cartid+"&pro_qty="+pro_qty,
  28. Warning Line 185, Column 59reference not terminated by REFC delimiter
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  29. Error Line 185, Column 59reference to entity “cartid” for which no system identifier could be generated
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  30. Info Line 105, Column 52entity was defined here
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
  31. Warning Line 185, Column 77reference not terminated by REFC delimiter
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  32. Error Line 185, Column 77reference to entity “userid” for which no system identifier could be generated
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  33. Info Line 105, Column 70entity was defined here
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
  34. Warning Line 189, Column 22character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  35. Warning Line 189, Column 23character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  36. Error Line 209, Column 37document type does not allow element “span” here
    view1 ='<span class="redEror"><b>'+view+'</b></span>';
    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).
  37. Error Line 213, Column 39document type does not allow element “span” here
     view1 ='<span class="grnSuc"><b>'+view+'</b></span>';
    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).
  38. Error Line 219, Column 34document type does not allow element “span” here
    view1='<span class="grnSuc"><b>'+err+'</b></span>';
    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).
  39. Error Line 226, Column 36document type does not allow element “span” here
    view1 ='<span class="redEror"><b>'+error+'</b></span>';
    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).
  40. Warning Line 273, Column 39reference not terminated by REFC delimiter
     data: "cartid="+cartid+"&userid="+userid,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  41. Error Line 273, Column 39reference to entity “userid” for which no system identifier could be generated
      data: "cartid="+cartid+"&userid="+userid,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  42. Info Line 105, Column 70entity was defined here
    …data: "pro_id="+pro_id+"&pro_qty="+pro_qty+"&cartid="+cartid+"&userid="+userid,
  43. Error Line 287, Column 36document type does not allow element “span” here
      view1 ='<span class="grnSuc"><b>'+view+'</b></span>';
    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).
  44. Error Line 292, Column 34document type does not allow element “span” here
    view1='<span class="grnSuc"><b>'+err+'</b></span>';
    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).
  45. Error Line 298, Column 36document type does not allow element “span” here
    view1 ='<span class="redEror"><b>'+error+'</b></span>';
    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).
  46. Warning Line 332, Column 39reference not terminated by REFC delimiter
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  47. Error Line 332, Column 39reference to entity “pro_qty” for which no system identifier could be generated
     data: "cartid="+cartid+"&pro_qty="+pro_qty,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  48. Info Line 88, Column 31entity was defined here
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
  49. Warning Line 359, Column 40reference not terminated by REFC delimiter
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  50. Error Line 359, Column 40reference to entity “pro_qty” for which no system identifier could be generated
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  51. Info Line 88, Column 31entity was defined here
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
  52. Warning Line 365, Column 22character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  53. Warning Line 365, Column 23character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  54. Error Line 384, Column 37document type does not allow element “span” here
    view1 ='<span class="redEror"><b>'+view+'</b></span>';
    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).
  55. Error Line 388, Column 36document type does not allow element “span” here
    view1 ='<span class="grnSuc"><b>'+view+'</b></span>';
    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).
  56. Error Line 394, Column 34document type does not allow element “span” here
    view1='<span class="grnSuc"><b>'+err+'</b></span>';
    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).
  57. Error Line 401, Column 36document type does not allow element “span” here
    view1 ='<span class="redEror"><b>'+error+'</b></span>';
    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).
  58. Warning Line 440, Column 40reference not terminated by REFC delimiter
       data: "cartid="+cartid+"&pro_qty="+pro_qty,
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  59. Error Line 440, Column 40reference to entity “pro_qty” for which no system identifier could be generated
      data: "cartid="+cartid+"&pro_qty="+pro_qty,
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  60. Info Line 88, Column 31entity was defined here
     data: "cartid="+cartid+"&pro_qty="+pro_qty,
  61. Warning Line 444, Column 22character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  62. Warning Line 444, Column 23character “&” is the first character of a delimiter but occurred as data
     x=data.split("[&&]");
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  63. Error Line 453, Column 36document type does not allow element “span” here
     view1 ='<span class="grnSuc"><b>'+view+'</b></span>';
    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).
  64. Error Line 458, Column 34document type does not allow element “span” here
    view1='<span class="grnSuc"><b>'+err+'</b></span>';
    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).
  65. Error Line 465, Column 36document type does not allow element “span” here
    view1 ='<span class="redEror"><b>'+error+'</b></span>';
    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).
  66. Warning Line 556, Column 22character “<” is the first character of a delimiter but occurred as data
    if (topmenuTopPos < -100)
    This message may appear in several cases:
    • You tried to include the “<” character in your page: you should escape it as “&lt;”
    • You used an unescaped ampersand “&”: this may be valid in some contexts, but it is recommended to use “&amp;”, which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  67. Warning Line 707, Column 93cannot generate system identifier for general entity “keyword”
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in “Ampersands in URLs“.
    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as “&amp;” (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.
    If this error appears in some markup generated by PHP’s session handling code, this article has explanations and solutions to your problem.
    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
  68. Error Line 707, Column 93general entity “keyword” not defined and no default entity
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  69. Warning Line 707, Column 100reference not terminated by REFC delimiter
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  70. Error Line 707, Column 100reference to entity “keyword” for which no system identifier could be generated
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  71. Info Line 707, Column 92entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid…
  72. Warning Line 707, Column 113cannot generate system identifier for general entity “vendorid”
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in “Ampersands in URLs“.
    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as “&amp;” (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.
    If this error appears in some markup generated by PHP’s session handling code, this article has explanations and solutions to your problem.
    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
  73. Error Line 707, Column 113general entity “vendorid” not defined and no default entity
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  74. Warning Line 707, Column 121reference not terminated by REFC delimiter
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  75. Error Line 707, Column 121reference to entity “vendorid” for which no system identifier could be generated
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  76. Info Line 707, Column 112entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
  77. Warning Line 721, Column 100reference not terminated by REFC delimiter
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  78. Error Line 721, Column 100reference to entity “keyword” for which no system identifier could be generated
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  79. Info Line 707, Column 92entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid…
  80. Warning Line 721, Column 121reference not terminated by REFC delimiter
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    If you meant to include an entity that starts with “&”, then you should terminate it with “;”. Another reason for this error message is that you inadvertently created an entity by failing to escape an “&” character just before this text.
  81. Error Line 721, Column 121reference to entity “vendorid” for which no system identifier could be generated
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
  82. Info Line 707, Column 112entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
  83. Warning Line 770, Column 37cannot generate system identifier for general entity “page”
           data: "product_id="+pro_id+"&page="+pagestat,
    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in “Ampersands in URLs“.
    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as “&amp;” (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.
    If this error appears in some markup generated by PHP’s session handling code, this article has explanations and solutions to your problem.
    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.





No comments:

Post a Comment