<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Slopjongs weblog &#187; cms</title>
	<atom:link href="http://slopjong.de/tag/cms/feed/" rel="self" type="application/rss+xml" />
	<link>http://slopjong.de</link>
	<description>A geek discovering the World, Tech &#38; Science</description>
	<lastBuildDate>Wed, 25 Jan 2012 11:13:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>TYPO3 can&#8217;t find your database?</title>
		<link>http://slopjong.de/2008/05/16/typo3-cant-find-your-database/</link>
		<comments>http://slopjong.de/2008/05/16/typo3-cant-find-your-database/#comments</comments>
		<pubDate>Fri, 16 May 2008 21:41:00 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[TYPO3]]></category>

		<guid isPermaLink="false">http://blog.romainschmitz.eu/?p=15</guid>
		<description><![CDATA[Has anybody problems to install the content management system TYPO3?
Your database cannot be found? Then try the following hack:
Change in the file /typo3/sysext/install/mod/class.tx_install.php the function getDatabasList() from this
function getDatabaseList() {
$dbArr=array();
if ($result = $GLOBALS['TYPO3_DB']-&#38;gt;sql_pconnect(TYPO3_db_host, TYPO3_db_username, TYPO3_db_password)) {
$dbArr = $GLOBALS['TYPO3_DB']-&#38;gt;admin_get_dbs();
}
return $dbArr;
}
into this
function getDatabaseList() {
$dbArr=array("DATABASE_NAME");
//if ($result = $GLOBALS['TYPO3_DB']-&#38;gt;sql_pconnect(TYPO3_db_host,
// TYPO3_db_username, TYPO3_db_password))
//{
//$dbArr = $GLOBALS['TYPO3_DB']-&#38;gt;admin_get_dbs();
//}
return $dbArr;
}
Run your script again and tell [...]]]></description>
		<wfw:commentRss>http://slopjong.de/2008/05/16/typo3-cant-find-your-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

