Posts: 256
Location: Auckland, New Zealand
|
As far as I'm concerned I answered your question as to why it's not XML compliant.
Code:
line 452, [user-supplied text]: error (1123): GI begins with illegal character sequence: <s'+'cript
This means the General Identifier (GI) has illegal characters being used, what is really happening is the validator thinks <s'+c'ript is actually a markup tag, it does not see this as CDATA, you'll need to insert a <![CDATA[ comment ]]> in there so that it skips over this.
Code:
line 452, [user-supplied text]: error (1123): GI begins with illegal character sequence: </s'+'cript
Same as above.
Code:
line 455, [user-supplied text]: error (1121): malformed (unterminated?) tag: IFRAME
It's not finding the end tag for it, but it's uncertain when it says (unterminated?), this is probably a bigger mess than what I pointed out, there's a lot more that's wrong with just this tag and attributes.
Code:
line 455, [user-supplied text]: error (1350): illegal character: 4
Illegal characters mainly mean you're not using the correct HTML entities, ampersand (&) should be converted to & If you count how many & characters you're using you should see 4 of them, just make them all & with the semi-colon.
Will this fix all your problems, no but it's a start.
If you can fix the problems as stated, I may even be generous enough to provide the end all to this madness.
Cheers,
MC
__________________
#------------------------------ signature---------------------------------------------------------------------------------#
Quote:
|
I am well recognised for what I don't do than what I do. Chores are just one of those things.
|
Last edited by mastercomputers; 06-19-2007 at 08:29 AM..
|