6.0.0-git
2024-05-28

Diff for RHEL3PearHowTo between 4 and 5

+ Installing PEAR modules necessary on RHEL 3 (or clones)



//#// first change to the framework directory and get the framework PEAR packages installed

<code>

cd /var/www/html/horde/framework/

php install-packages.php

</code>



//#// then finish



//#// needed for Horde base

<code>

pear install Log

pear install Mail_Mime

pear upgrade DB

pear install Date

pear install Auth_SASL

pear install File

</code>



//#// needed for IMP

<code>

pear install HTTP_Request

</code>



//#// needed for Wicked

<code>

pear install Text_Wiki

</code>



//#// needed for Ingo

<code>

pear install Net_Sieve

pear install Net_Socket

</code>



//#// needed for weather portal block in Horde

<code>

pear install cache

pear install net_dime

pear install Net_URL

pear install soap

pear install xml_util

pear install xml_parser

pear install serializer

pear install xml_serializer

pear install services_weather

</code>



//#// and lastly...

<code>

pear upgrade-all

</code>



If for some reason PEAR breaks...



then I just 

<code>

cd /usr/share

mv pear pear.bak

rpm -e php-mysql php-imap php-ldap

</code>



//#// for RHEL 3 only

<code>

up2date php-mysql php-imap php-ldap php

</code>



//#// for RHEL clones

<code>

yum install php-mysql php-imap php-ldap php

</code>



and then back to the top and reinstall starting with

<code>

cd /var/www/html/horde/framework

php install-packages.php

</code>



Need more code