Shoutbox

Dodgy W3 Validator - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Dodgy W3 Validator (/showthread.php?tid=39326)

Dodgy W3 Validator by Moo on 02-28-2005 at 11:56 PM

http://validator.w3.org/check?uri=http%3A%2F%2Fgu...L+1.0+Transitional

Did I screw up something on my page?


RE: Dodgy W3 Validator by Ahmad on 03-01-2005 at 12:03 AM

Uh yea you didn't define what type of document it is.

Oops apparenty you did..

Replace it with this and check it:

code:
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">

RE: RE: Dodgy W3 Validator by Moo on 03-01-2005 at 12:31 AM

quote:
Originally posted by Ahmz_055
Uh yea you didn't define what type of document it is.

Oops apparenty you did..

Replace it with this and check it:
code:
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">

I still fall back to HTML 4.01 T. :/
RE: Dodgy W3 Validator by RaceProUK on 03-01-2005 at 11:54 AM

I got it to validate a page I uploaded. Try this:

code:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

RE: Dodgy W3 Validator by fluffy_lobster on 03-01-2005 at 01:46 PM

Your page doesn't validate because it begins with a php error:

quote:
Warning: ob_start(): output handler 'ob_gzhandler' cannot be used after 'URL-Rewriter' in /home/theglas/public_html/guillaumelforum/wp-includes/functions.php on line 558
After that the doctype is useless.  Better fix that up :p
RE: Dodgy W3 Validator by Moo on 03-01-2005 at 08:44 PM

quote:
Originally posted by fluffy_lobster
Warning: ob_start(): output handler 'ob_gzhandler' cannot be used after 'URL-Rewriter' in /home/theglas/public_html/guillaum
O_O I don't see that...
RE: Dodgy W3 Validator by fluffy_lobster on 03-01-2005 at 09:23 PM

Strange... neither do I now.

But now it validates.


RE: Dodgy W3 Validator by Moo on 03-01-2005 at 09:45 PM

quote:
Originally posted by fluffy_lobster
Strange... neither do I now.

But now it validates.
It was because I had it gzipped... (now it aint)