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

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

Article Index

  • Info Line 88, Column 31entity was defined here
    	   data: "cartid="+cartid+"&pro_qty="+pro_qty,
  • 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.
  • 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.
  • 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).

  • 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).

  • 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).

  • 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.
  • 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.

  • 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.

  • 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.

  • 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.

  • Info Line 707, Column 92entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid…
  • 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.

  • 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.

  • 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.

  • 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.

  • Info Line 707, Column 112entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid;
  • 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.

  • 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.

  • Info Line 707, Column 92entity was defined here
    …ng/index.php?page=product/productviews&keyword="+keyword+"&vendorid="+vendorid…
  • 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.

  • 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;