<?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>Web Server Hacks Blog - Hacks for Dedicated/VPS Servers, SSH, and Plesk &#187; php 5.1.6</title>
	<atom:link href="http://webserverhacks.com/tag/php-5-1-6/feed/" rel="self" type="application/rss+xml" />
	<link>http://webserverhacks.com</link>
	<description>Hacks for Dedicated/VPS Servers, SSH, and Plesk</description>
	<lastBuildDate>Tue, 01 Nov 2011 23:56:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>CentOS Hack – How to Upgrade from PHP 5.1.6 to 5.2!</title>
		<link>http://webserverhacks.com/web-server-hacks/centos-hack-%e2%80%93-how-to-upgrade-from-php-5-1-6-to-5-2/</link>
		<comments>http://webserverhacks.com/web-server-hacks/centos-hack-%e2%80%93-how-to-upgrade-from-php-5-1-6-to-5-2/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 00:54:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Server Hacks]]></category>
		<category><![CDATA[5.2]]></category>
		<category><![CDATA[centos hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[php 5.1.6]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://webserverhacks.com/?p=81</guid>
		<description><![CDATA[For those of you who are trying to upgrade from PHP 5.2 because your application requires PHP 5.2 or above, you can use this hack to upgrade your web server running CentOS. Since CentOS doesn&#8217;t officially support PHP 5.2 officially yet, this could possibly be a great workaround. Word of caution, this hack has worked fine for me for a new Twitter app site I am making that requires use of PHP 5.2 but if you have non-standard customizations to your server, you might want to test it first. I&#8217;ve also found that JSON library that comes with PHP 5.2 is like 20 times faster rather than trying to run separate JSON libraries with PHP 5.1.6. It made a HUGE difference let me just say in page loading times. (Like .90 seconds versus 0.003 seconds.) This guide describes how to upgrade the standard PHP 5.1.x packages in CentOS 5.x 32-bit to the current development versions 5.2.x. These instructions were created using CentOS 5.3 32-bit and with the following PHP packages installed: # rpm -qa &#124;grep php php-common-5.1.6-15.el5.i386 php-cli-5.1.6-15.el5.i386 php-5.1.6-15.el5.i386 php-pdo-5.1.6-15.el5.i386 php-bcmath-5.1.6-15.el5.i386 php-ldap-5.1.6-15.el5.i386 php-devel-5.1.6-15.el5.i386 php-gd-5.1.6-15.el5.i386 php-xml-5.1.6-15.el5.i386 php-mbstring-5.1.6-15.el5.i386 php-mysql-5.1.6-15.el5.i386 php-dba-5.1.6-15.el5.i386 As long as you&#8217;re using the standard PHP packages on your CentOS &#8230; <a href="http://webserverhacks.com/web-server-hacks/centos-hack-%e2%80%93-how-to-upgrade-from-php-5-1-6-to-5-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For those of you who are trying to upgrade from PHP 5.2 because your application requires PHP 5.2 or above, you can use this hack to upgrade your web server running CentOS.  Since CentOS doesn&#8217;t officially support PHP 5.2 officially yet, this could possibly be a great workaround.</p>
<p>Word of caution, this hack has worked fine for me for a new Twitter app site I am making that requires use of PHP 5.2 but if you have non-standard customizations to your server, you might want to test it first.</p>
<p>I&#8217;ve also found that JSON library that comes with PHP 5.2 is like 20 times faster rather than trying to run separate JSON libraries with PHP 5.1.6.  It made a HUGE difference let me just say in page loading times. (Like .90 seconds versus 0.003 seconds.)</p>
<blockquote><p>This guide describes how to upgrade the standard PHP 5.1.x packages in CentOS 5.x 32-bit to the current development versions 5.2.x. These instructions were created using CentOS 5.3 32-bit and with the following PHP packages installed:</p>
<p># rpm -qa |grep php</p>
<p>php-common-5.1.6-15.el5.i386<br /> <br />
php-cli-5.1.6-15.el5.i386<br /> <br />
php-5.1.6-15.el5.i386<br /> <br />
php-pdo-5.1.6-15.el5.i386<br /> <br />
php-bcmath-5.1.6-15.el5.i386<br /> <br />
php-ldap-5.1.6-15.el5.i386<br /> <br />
php-devel-5.1.6-15.el5.i386<br /> <br />
php-gd-5.1.6-15.el5.i386<br /> <br />
php-xml-5.1.6-15.el5.i386<br /> <br />
php-mbstring-5.1.6-15.el5.i386<br /> <br />
php-mysql-5.1.6-15.el5.i386<br /> <br />
php-dba-5.1.6-15.el5.i386</p>
<p>As long as you&#8217;re using the standard PHP packages on your CentOS server you won&#8217;t need to do anything extra. If you&#8217;re using extra PHP packages that aren&#8217;t part of the standard CentOS repositories (like php-mcrypt) you&#8217;ll have to remove them or find updated versions of them.</p></blockquote>
<p><a target="_blank" href="http://wiki.centos.org/HowTos/PHP_5.1_To_5.2" >via cent.os</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://webserverhacks.com/web-server-hacks/centos-hack-%e2%80%93-how-to-upgrade-from-php-5-1-6-to-5-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

