Last modified: 2010-05-15 15:48:33 UTC
At IE6 the RSS Feed (http://www.theologiewiki.de/wiki/index.php?title=Spezial:Letzte_%C3% 84nderungen&feed=rss) works fine. But YahooSiteExplorer and Firefox cant use him : "XML-Verarbeitungsfehler: XML-Deklaration nicht am Beginn von externer Entität Adresse: http://www.theologiewiki.de/wiki/index.php?title=Spezial:Letzte_%C3% 84nderungen&feed=rss Zeile Nr. 2, Spalte 1:<?xml version="1.0" encoding="utf-8"?> ^" This happens still since 1.9.0 !
There is extra whitespace at the beginning or end of one or more of your PHP files, probably LocalSettings.php or another file you have edited. Remove it.
This happens at a fresh and clean Installation with the Installer.
Your wiki has an extension in it, so it's clearly not a fresh and clean installation. Look at the file.
It only the SitemapExtension : <?php $wgExtensionFunctions[] = "wfExtensionSpecialGoogleSitemap"; $wgExtensionCredits['specialpage'][] = array ( 'name' => 'Special:GoogleSitemap', 'description' => 'Adds a special page to create a XML Google Sitemap file, along with some reporting.', 'url' => 'http://www.mediawiki.org/wiki/Google_Sitemap_Extension', 'author' => 'François Boutines-Vignard', 'version' => '0.0.4' ); function wfExtensionSpecialGoogleSitemap() { global $wgMessageCache; $wgMessageCache->addMessages(array('googlesitemap' => 'Google Sitemap')); $wgAvailableRights[] = 'googlesitemap'; $wgGroupPermissions['bureaucrat']['googlesitemap'] = true; SpecialPage::addPage( new SpecialPage( 'GoogleSitemap' , 'userrights') ); } ?>
As above, please check for whitespace or other characters, such as byte-order marks, at the start of the file(s) you have introduced or changed, and at the end, after the ?> tag.
I did not have anything done like this !!!
You may not have intentionally done anything; you may have accidentally introduced whitespace or other noise during the upload, if you uploaded the file to a remote server. If you edited the file in an application which inserts byte-order marks in files, this may have introduced something into LocalSettings.php. This, however, is where the problem is coming from, so you need to check any files you have modified, both core and extension.