<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Openbiz&#039;s Blog</title>
	<atom:link href="http://openbizblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://openbizblog.wordpress.com</link>
	<description>Web Solutions</description>
	<lastBuildDate>Sat, 10 Dec 2011 11:37:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='openbizblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Openbiz&#039;s Blog</title>
		<link>http://openbizblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://openbizblog.wordpress.com/osd.xml" title="Openbiz&#039;s Blog" />
	<atom:link rel='hub' href='http://openbizblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Running Magento 1.3 on PHP 5.3</title>
		<link>http://openbizblog.wordpress.com/2011/12/10/running-magento-1-3-on-php-5-3/</link>
		<comments>http://openbizblog.wordpress.com/2011/12/10/running-magento-1-3-on-php-5-3/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 11:36:43 +0000</pubDate>
		<dc:creator>openbizblog</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://openbizblog.wordpress.com/?p=26</guid>
		<description><![CDATA[Magento 1.3 is not compatible with PHP 5.3 without any additional modifications. So if you decide to run Magento with PHP 5.3, here is a two-step description how to do it: 1) Open index.php and locate the line containing : error_reporting(E_ALL &#124; E_STRICT); It is the 35th line in Magento 1.3.3.0. Replace it with : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=openbizblog.wordpress.com&amp;blog=11880793&amp;post=26&amp;subd=openbizblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Magento 1.3 is not compatible with PHP 5.3 without any additional modifications. So if you decide to run Magento with PHP 5.3, here is a two-step description how to do it:</p>
<p>1) Open index.php and locate the line containing :</p>
<p><em>error_reporting(E_ALL | E_STRICT);</em></p>
<p>It is the 35th line in Magento 1.3.3.0. Replace it with :</p>
<p><em>error_reporting((E_ALL | E_STRICT) &amp; !E_DEPRECATED);</em></p>
<p>In PHP 5.3 functions like split() and ereg() are deprecated. Magento 1.3 widely uses these two functions so you have to disable error reporting for the newly introduced error level E_DEPRECATED.</p>
<p>2) Open lib/Varien/Object.php and look for the method :</p>
<p><em>public function __toString(array $arrAttributes = array(), $valueSeparator=&#8217;,') </em><br />
<em>{ </em><br />
<em>    $arrData = $this-&gt;toArray($arrAttributes); </em><br />
<em>    return implode($valueSeparator, $arrData); </em><br />
<em>} </em></p>
<p>It is line 484 in Magento 1.3.3.0. Replace it with</p>
<p><em>public function __toString() </em><br />
<em>{ </em><br />
<em>    if(func_num_args() &gt; 0) { </em><br />
<em>        $arrAttributes = func_get_arg(0); </em><br />
<em>    } else { </em><br />
<em>        $arrAttributes = array(); </em><br />
<em>    } </em><br />
<em>    if(func_num_args() &gt; 1) { </em><br />
<em>        $valueSeparator = func_get_arg(1); </em><br />
<em>    } else { </em><br />
<em>        $valueSeparator = &#8216;,&#8217;; </em><br />
<em>    } </em><br />
<em>    $arrData = $this-&gt;toArray($arrAttributes); </em><br />
<em>    return implode($valueSeparator, $arrData); </em><br />
<em>} </em></p>
<p>With PHP 5.3 the magic method __toString() no more accepts any parameters. That&#8217;s why the old method declaration will cause the following error:</p>
<p>Fatal error: Method Varien_Object::__tostring() cannot take arguments in /magento/lib/Varien/Object.php</p>
<p>Note: The steps listed above are tested with Magento 1.3.3.0.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/openbizblog.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/openbizblog.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/openbizblog.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/openbizblog.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/openbizblog.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/openbizblog.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/openbizblog.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/openbizblog.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/openbizblog.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/openbizblog.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/openbizblog.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/openbizblog.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/openbizblog.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/openbizblog.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=openbizblog.wordpress.com&amp;blog=11880793&amp;post=26&amp;subd=openbizblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://openbizblog.wordpress.com/2011/12/10/running-magento-1-3-on-php-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cac03e124b29cb33504a3f82eb7d8b33?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">openbizblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Magento Random Related Products</title>
		<link>http://openbizblog.wordpress.com/2011/11/09/magento-random-related-products/</link>
		<comments>http://openbizblog.wordpress.com/2011/11/09/magento-random-related-products/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 00:07:45 +0000</pubDate>
		<dc:creator>openbizblog</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://openbizblog.wordpress.com/?p=11</guid>
		<description><![CDATA[Before you put that module there is no limit of the displayed items in the related products sidebar. But thanks to this module you can now choose how many items to be displayed in the related products side menu. Each time the shown products are randomly chosen from all related products. The option for selecting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=openbizblog.wordpress.com&amp;blog=11880793&amp;post=11&amp;subd=openbizblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://openbizblog.files.wordpress.com/2011/12/openbiz_randomrelatedproducts_eaa7fe7a1c4b8edceb0b8e4ca7043eb3_desk293.jpg"><img class="alignnone size-medium wp-image-15" style="border:0;" title="openbiz_randomrelatedproducts_eaa7fe7a1c4b8edceb0b8e4ca7043eb3_desk293" src="http://openbizblog.files.wordpress.com/2011/12/openbiz_randomrelatedproducts_eaa7fe7a1c4b8edceb0b8e4ca7043eb3_desk293.jpg?w=300&#038;h=230" alt="" width="300" height="230" /></a></p>
<p>Before you put that module there is no limit of the displayed items in the related products sidebar. But thanks to this module you can now choose how many items to be displayed in the related products side menu. Each time the shown products are randomly chosen from all related products. The option for selecting the number of shown products is in the administrative panel (System -&gt; Configuration -&gt; Catalog -&gt; Random Related Products).</p>
<p><a href="http://openbizblog.files.wordpress.com/2011/12/openbiz_randomrelatedproducts_85d82b9333847f8667a8f6146dc8423c_desk292.jpg"><img class="alignnone size-medium wp-image-14" style="border:0;" title="openbiz_randomrelatedproducts_85d82b9333847f8667a8f6146dc8423c_desk292" src="http://openbizblog.files.wordpress.com/2011/12/openbiz_randomrelatedproducts_85d82b9333847f8667a8f6146dc8423c_desk292.jpg?w=300&#038;h=230" alt="" width="300" height="230" /></a></p>
<p>Supported versions : 1.3, 1.4</p>
<p>You can download the module from <a title="Magento Random Related Products" href="http://www.magentocommerce.com/magento-connect/random-related-products-6104.html" target="_blank">here</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/openbizblog.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/openbizblog.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/openbizblog.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/openbizblog.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/openbizblog.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/openbizblog.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/openbizblog.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/openbizblog.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/openbizblog.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/openbizblog.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/openbizblog.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/openbizblog.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/openbizblog.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/openbizblog.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=openbizblog.wordpress.com&amp;blog=11880793&amp;post=11&amp;subd=openbizblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://openbizblog.wordpress.com/2011/11/09/magento-random-related-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cac03e124b29cb33504a3f82eb7d8b33?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">openbizblog</media:title>
		</media:content>

		<media:content url="http://openbizblog.files.wordpress.com/2011/12/openbiz_randomrelatedproducts_eaa7fe7a1c4b8edceb0b8e4ca7043eb3_desk293.jpg?w=300" medium="image">
			<media:title type="html">openbiz_randomrelatedproducts_eaa7fe7a1c4b8edceb0b8e4ca7043eb3_desk293</media:title>
		</media:content>

		<media:content url="http://openbizblog.files.wordpress.com/2011/12/openbiz_randomrelatedproducts_85d82b9333847f8667a8f6146dc8423c_desk292.jpg?w=300" medium="image">
			<media:title type="html">openbiz_randomrelatedproducts_85d82b9333847f8667a8f6146dc8423c_desk292</media:title>
		</media:content>
	</item>
		<item>
		<title>What is RSS ?</title>
		<link>http://openbizblog.wordpress.com/2011/10/28/what-is-rss/</link>
		<comments>http://openbizblog.wordpress.com/2011/10/28/what-is-rss/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 13:40:03 +0000</pubDate>
		<dc:creator>openbizblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openbizblog.wordpress.com/?p=4</guid>
		<description><![CDATA[RSS is a basic XML format for publishing syndicated content. The root element of the document is rss, which contains a single channel element. The channel element contains metadata about the feed, including its title, language, and URL. It also contains various stories enclosed in item elements. Each item has a link element containing a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=openbizblog.wordpress.com&amp;blog=11880793&amp;post=4&amp;subd=openbizblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>RSS is a basic XML format for publishing syndicated content. The root element of the document is rss, which contains a single channel element. The channel element contains metadata about the feed, including its title, language, and URL. It also contains various stories enclosed in item elements. Each item has a link element containing a URL and either a title or a description (usually both) that contain plain text.</p>
<p>RSS is a basic XML format for publishing syndicated content. The root element of the document is rss, which contains a single channel element. The channel element contains metadata about the feed, including its title, language, and URL. It also contains various stories enclosed in item elements. Each item has a link element containing a URL and either a title or a description (usually both) that contain plain text.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/openbizblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/openbizblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/openbizblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/openbizblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/openbizblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/openbizblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/openbizblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/openbizblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/openbizblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/openbizblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/openbizblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/openbizblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/openbizblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/openbizblog.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=openbizblog.wordpress.com&amp;blog=11880793&amp;post=4&amp;subd=openbizblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://openbizblog.wordpress.com/2011/10/28/what-is-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cac03e124b29cb33504a3f82eb7d8b33?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">openbizblog</media:title>
		</media:content>
	</item>
	</channel>
</rss>
