<?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>Chaos Engine &#187; Joomla!</title>
	<atom:link href="http://dev.modmancer.com/index.php/tag/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.modmancer.com</link>
	<description>Sometimes I drink to forget.. but then I forget to drink..</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:11:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Joomla! 1.0.x and PHP 5.3 meltdown</title>
		<link>http://dev.modmancer.com/index.php/2010/05/23/joomla-1-0-x-and-php-5-3-meltdown/</link>
		<comments>http://dev.modmancer.com/index.php/2010/05/23/joomla-1-0-x-and-php-5-3-meltdown/#comments</comments>
		<pubDate>Sun, 23 May 2010 12:14:31 +0000</pubDate>
		<dc:creator>riddler</dc:creator>
				<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[bug]]></category>

		<guid isPermaLink="false">http://dev.modmancer.com/?p=49</guid>
		<description><![CDATA[Here is the story: if you happen to run Joomla! 1.0, which you should not but what the heck, you&#8217;ll run into some weird issues if there is PHP 5.3.x running on your server. Everything will work fine except for one thing &#8211; there will be no content at al on your web site. And [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the story: if you happen to run Joomla! 1.0, which you should  not but what the heck, you&#8217;ll run into some weird issues if there is  PHP 5.3.x running on your server. Everything will work fine except for  one thing &#8211; there will be no content at al on your web site. And no  matter what you do content will be invisible. Since Joomla! 1.0.x is no  longer being maintained you should either upgrade to Joomla! 1.5.x/1.6.x  or apply this little hack below:</p>
<p>Replace:</p>
<pre>$arguments = func_get_args();
</pre>
<p>with</p>
<pre>$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i &lt; $numargs; $i++){
$arguments[$i] = &amp;$arguments[$i];
}
</pre>
<p>in includes/Cache/Lite/Function.php. This should be OK till&#8230; well,  till you upgrade. It&#8217;s not like they are going to fix it in Joomla! 1.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.modmancer.com/index.php/2010/05/23/joomla-1-0-x-and-php-5-3-meltdown/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
	</channel>
</rss>

