It's not a joking. 514 bugs with Inoutscripts Shopping Cart - 7

It's not a joking. 514 bugs with Inoutscripts Shopping Cart - 7

Article Index

  • Error Line 931, Column 194reference to entity "checkbox" for which no system identifier could be generated
    …&radio="+radiofields_value1+"&checkbox="+checkboxfields_value1+"&vendorid="+ve…

    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.

  • Info Line 931, Column 185entity was defined here
    …eld_ids+"&radio="+radiofields_value1+"&checkbox="+checkboxfields_value1+"&vend…
  • Warning Line 931, Column 229reference not terminated by REFC delimiter
    …alue1+"&checkbox="+checkboxfields_value1+"&vendorid="+vendorid+"&click="+click,

    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.

  • Error Line 931, Column 229reference to entity "vendorid" for which no system identifier could be generated
    …alue1+"&checkbox="+checkboxfields_value1+"&vendorid="+vendorid+"&click="+click,

    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.

  • Info Line 707, Column 112entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
  • Warning Line 931, Column 243cannot generate system identifier for general entity "click"
    …alue1+"&checkbox="+checkboxfields_value1+"&vendorid="+vendorid+"&click="+click,

    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 "&" (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 æ 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.

  • Error Line 931, Column 243general entity "click" not defined and no default entity
    …alue1+"&checkbox="+checkboxfields_value1+"&vendorid="+vendorid+"&click="+click,

    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.

  • Warning Line 931, Column 248reference not terminated by REFC delimiter
    …alue1+"&checkbox="+checkboxfields_value1+"&vendorid="+vendorid+"&click="+click,

    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.

  • Error Line 931, Column 248reference to entity "click" for which no system identifier could be generated
    …alue1+"&checkbox="+checkboxfields_value1+"&vendorid="+vendorid+"&click="+click,

    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.

  • Info Line 931, Column 242entity was defined here
    …alue1+"&checkbox="+checkboxfields_value1+"&vendorid="+vendorid+"&click="+click,
  • Warning Line 944, Column 22character "&" is the first character of a delimiter but occurred as data
       x=d.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.
  • Warning Line 944, Column 23character "&" is the first character of a delimiter but occurred as data
        x=d.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.
  • Warning Line 1037, Column 30cannot generate system identifier for general entity "color"
        data: "pro_id="+pro_id+"&color="+color,

    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.

  • Error Line 1037, Column 30general entity "color" not defined and no default entity
        data: "pro_id="+pro_id+"&color="+color,

    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.

  • Warning Line 1037, Column 35reference not terminated by REFC delimiter
        data: "pro_id="+pro_id+"&color="+color,

    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.

  • Error Line 1037, Column 35reference to entity "color" for which no system identifier could be generated
        data: "pro_id="+pro_id+"&color="+color,

    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.

  • Info Line 1037, Column 29entity was defined here
        data: "pro_id="+pro_id+"&color="+color,
  • Warning Line 1084, Column 24character "<" is the first character of a delimiter but occurred as data
        for(i=0;i<(selectcount-1);i++)

    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.
  • Error Line 1104, Column 37character ";" not allowed in attribute specification list
          for(i=0;i<radiocount-1;i++)

  • Error Line 1104, Column 37element "radiocount-1" undefined
          for(i=0;i<radiocount-1;i++)

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by: