• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

validation............

K

KESThai

Guest
One of the most fundamental points in webpage design is page validation. If a page does not validate 100% to HTML specifications you can be sure of problems re cross-browser compatibility etc.

There are plenty of page validation websites but IMHO the best is:

http://validator.w3.org/#validate_by_uri

Mozilla has a plugin for the above site too.

One of the first things a webpage should do is inform the browser what Document Type Definition (DOCTYPE) the webpage is written in.

A list of valid Document Type Definitions (DOCTYPEs) can be found at http://www.w3.org/QA/2002/04/valid-dtd-list.html.

But surprise...surprise...Parallels SiteBuilder does not on publishing make any reference to Document Type Definition (DOCTYPE) in its pages leaving browsers to try and interpret what the DOCTYPE might be.

A major failing in what could otherwise be a great program...but with no Document Type Definition (DOCTYPE) it becomes just another useless WYSIWYG program only for amateurs and not serious designers....
 
Actually, as I figured out DOCTYPE is supported since 4.5 version. Check it up:

# grep -r -i DOCTYPE /usr/local/sitebuilder/htdocs/templates/
/usr/local/sitebuilder/htdocs/templates/eug-29/template.xsl:<xsl:eek:utput method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
/usr/local/sitebuilder/htdocs/templates/personal-018/template.xsl:<xsl:eek:utput method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
/usr/local/sitebuilder/htdocs/templates/aa-03/template.xsl:<xsl:eek:utput method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
/usr/local/sitebuilder/htdocs/templates/vap-26/template.xsl: <xsl:eek:utput method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
/usr/local/sitebuilder/htdocs/templates/vap-45/template.xsl: <xsl:eek:utput method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
/usr/local/sitebuilder/htdocs/templates/zsk-07/template.xsl:<xsl:eek:utput method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
/usr/local/sitebuilder/htdocs/templates/vap-18/template.xsl: <xsl:eek:utput method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>

You can create your own templates and define DOCTYPE there without any issues.
 
Back
Top