A page is not loading correctly and I get the following error message:
The character encoding of the HTML document was not declared ....
In the template I have:
Code: Select all
{process_pagedata}
<!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-au">
<head>
<title>{title}</title>
{metadata}
{cms_stylesheet}
<link rel="stylesheet" type="text/css" href="http://site.com.au/jquery.lightbox-0.5.css" media="screen" />
<__script__ type="text/javascript" src="http://site.com.au/jquery.js"></__script>
<__script__ type="text/javascript" src="http://site.com.au/jquery.lightbox-0.5.js"></__script>
<__script__ type="text/javascript">
$(function() {
$('#imagebox a').lightBox();
});
</__script>
</head>
The charset is in Global Metadata.
Thanks