I have the gallery embedded into an existing page on my site.
This is causing problems validating as Xhtml strict due to the fact that both a title element and a charset meta tag are being dumped in the page where both already exist. I believe that the additional tags are due to the RSS headers being generated.
This is the it being added to the page and causing the problems.
<title>Cross Brand Galleries: Collections </title> <script type="text/javascript" src="http://my site url/gallery/slideshow.js"></script> <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="http://my site url/gallery/plog-rss.php?level=collections&id=0" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <link rel='stylesheet' type='text/css' href='http://my site url/gallery/themes/default//gallery.css' /> <script type='text/javascript' src='http://my site url/gallery/themes/default/dynamics.js'></script></head>
How can I keep this from being inserted into the page and keep the RSS functioning?
Let me know if that is cool - I honestly have no idea what I'm doing in there! :)
w3.org, while passing the validation, insisted that the headers are still coming down as utf-8
The character encoding specified in the HTTP header (utf-8) is different from the value in the <meta> element (iso-8859-1). I will use the value from the HTTP header (utf-8) for this validation.
i have no idea why your character sets are different unless you didn't specify it correctly in the page you integrated plogger in.... that's not my specialty...
if you still want RSS to work though i would uncomment the line after "Embed URL to RSS feed for proper level" that would be the line to make rss work...