<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Upgrade PHP</title>
	<atom:link href="http://www.v-nessa.net/2007/12/04/how-to-upgrade-php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.v-nessa.net/2007/12/04/how-to-upgrade-php</link>
	<description>pink is the new black</description>
	<lastBuildDate>Thu, 26 Jan 2012 17:17:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Internet Interesante del 13 de Enero</title>
		<link>http://www.v-nessa.net/2007/12/04/how-to-upgrade-php/comment-page-1#comment-10315</link>
		<dc:creator>Internet Interesante del 13 de Enero</dc:creator>
		<pubDate>Wed, 13 Jan 2010 17:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/12/04/121#comment-10315</guid>
		<description>[...] How to Upgrade PHP: Informaci&#243;n sobre como actualizar PHP desde WHM y de manera manual. (En ingl&#233;s) [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Upgrade PHP: Informaci&oacute;n sobre como actualizar PHP desde WHM y de manera manual. (En ingl&eacute;s) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2010-01-11</title>
		<link>http://www.v-nessa.net/2007/12/04/how-to-upgrade-php/comment-page-1#comment-10314</link>
		<dc:creator>links for 2010-01-11</dc:creator>
		<pubDate>Mon, 11 Jan 2010 20:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/12/04/121#comment-10314</guid>
		<description>[...] v-nessa.net » Post Archive » How to Upgrade PHP Información sobre como actualizar PHP desde WHM y de manera manual. (En inglés) (tags: php upgrade yum whm)     Compartir: [...]</description>
		<content:encoded><![CDATA[<p>[...] v-nessa.net » Post Archive » How to Upgrade PHP Información sobre como actualizar PHP desde WHM y de manera manual. (En inglés) (tags: php upgrade yum whm)     Compartir: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Upgrade PHP [ V-Nessa ]</title>
		<link>http://www.v-nessa.net/2007/12/04/how-to-upgrade-php/comment-page-1#comment-9366</link>
		<dc:creator>How to Upgrade PHP [ V-Nessa ]</dc:creator>
		<pubDate>Sun, 08 Jun 2008 10:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/12/04/121#comment-9366</guid>
		<description>[...] 4th 2007 5:21pm  [-] From: v-nessa.net  [...]</description>
		<content:encoded><![CDATA[<p>[...] 4th 2007 5:21pm  [-] From: v-nessa.net  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BinaryPhalanx</title>
		<link>http://www.v-nessa.net/2007/12/04/how-to-upgrade-php/comment-page-1#comment-8799</link>
		<dc:creator>BinaryPhalanx</dc:creator>
		<pubDate>Wed, 05 Dec 2007 01:56:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/12/04/121#comment-8799</guid>
		<description>for debian:
apt-get install equivs

them we create the file php.ctl:

Section: web
Package: php-dummy
Provides: php
Description: PHP dummy package
 This package provides dpkg with the information that php is installed.

then create the package:
equivs-build php.ctl

and then install it with apt.</description>
		<content:encoded><![CDATA[<p>for debian:<br />
apt-get install equivs</p>
<p>them we create the file php.ctl:</p>
<p>Section: web<br />
Package: php-dummy<br />
Provides: php<br />
Description: PHP dummy package<br />
 This package provides dpkg with the information that php is installed.</p>
<p>then create the package:<br />
equivs-build php.ctl</p>
<p>and then install it with apt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BinaryPhalanx</title>
		<link>http://www.v-nessa.net/2007/12/04/how-to-upgrade-php/comment-page-1#comment-8798</link>
		<dc:creator>BinaryPhalanx</dc:creator>
		<pubDate>Wed, 05 Dec 2007 01:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/12/04/121#comment-8798</guid>
		<description>I always compile my own PHP, its really the optimal way to do it, because you can specify exactly what you need it to do. Of course, this also typically involves a bucket full of dependencies that need to be installed before configure is successful, but I feel better about it anyway.

Then, of course, it&#039;s best to create a &quot;dummy package&quot; for your servers&#039; package manager so that it doesnt try to  download it for any packages that might require that.

For rpm: create a file named /usr/src/packages/SPECS/php-dummy.spec

and fill it with:
Name: php
Version: 5.2.5
Release: 0
License: GPL
Group: System
Requires: requirements
Provides: php
Buildarch: noarch
Summary: A virtual package to fulfil dependencies
%description
This package is just a dummy package to satisfy RPM dependencies that actually
are fulfilled.
%files

then build the dummy package with: 
rpm -ba
/usr/src/packages/SPECS/php-dummy.spec

this results in a package at
/usr/src/packages/RPMS/noarch/php-dummy-5.2.5-0.noarch.rpm</description>
		<content:encoded><![CDATA[<p>I always compile my own PHP, its really the optimal way to do it, because you can specify exactly what you need it to do. Of course, this also typically involves a bucket full of dependencies that need to be installed before configure is successful, but I feel better about it anyway.</p>
<p>Then, of course, it&#8217;s best to create a &#8220;dummy package&#8221; for your servers&#8217; package manager so that it doesnt try to  download it for any packages that might require that.</p>
<p>For rpm: create a file named /usr/src/packages/SPECS/php-dummy.spec</p>
<p>and fill it with:<br />
Name: php<br />
Version: 5.2.5<br />
Release: 0<br />
License: GPL<br />
Group: System<br />
Requires: requirements<br />
Provides: php<br />
Buildarch: noarch<br />
Summary: A virtual package to fulfil dependencies<br />
%description<br />
This package is just a dummy package to satisfy RPM dependencies that actually<br />
are fulfilled.<br />
%files</p>
<p>then build the dummy package with:<br />
rpm -ba<br />
/usr/src/packages/SPECS/php-dummy.spec</p>
<p>this results in a package at<br />
/usr/src/packages/RPMS/noarch/php-dummy-5.2.5-0.noarch.rpm</p>
]]></content:encoded>
	</item>
</channel>
</rss>

