|
Hi
While installing magentoo on CentOS 4.3 I faced some problem with php. I had to upgrade php4 to php5.2 . At first I tried compiling php5.2 from rpm source which did not work for me . After some trying I was success . setting up PHP5.2 addons /extesions for magentoo is very easy I followed the following steps and it was success
I was not able to upgrade directly to PHP 5.2 using the link
http://www.lampdeveloper.co.uk/linux/installing-php-525-suhosin-php-eaccelerator-on-centos-4-with-yum.html
It was giving some dependency problems
like
--> Processing Dependency: libmysqlclient.so.15 for package: php-mysql
--> Finished Dependency Resolution
Error: Missing Dependency: libmysqlclient.so.15(libmysqlclient_15) is needed by package php-mysql
Error: Missing Dependency: libmysqlclient.so.15 is needed by package php-mysql
Now at this stage , I edited “CentOS-Base.repo”
enabled [centosplus]
gave yum update php
now I have to install the PHP extensions/addons
1> yum install php-pdo
2> yum install php-mcrypt
3> yum install php-mhash
4> wget ftp://ftp.pbone.net/mirror/seerofsouls.com/mandriva/10.2/i586/LE2005/php-simplexml-5.0.4-1.SoS.i586.rpm
rpm -ivh php-simplexml-5.0.4-1.SoS.i586.rpm
5> yum install php-gd
6> wget ftp://ftp.pbone.net/mirror/seerofsouls.com/mandriva/10.2/i586/LE2005/php-dom-5.0.4-3.SoS.i586.rpm
rpm -ivh php-dom-5.0.4-3.SoS.i586.rpm
7> ftp://ftp.pbone.net/mirror/seerofsouls.com/mandriva/10.2/i586/LE2005/php-iconv-5.0.4-1.SoS.i586.rpm
rpm -ivh php-iconv-5.0.4-1.SoS.i586.rpm
Now u are ready with the required PHP extensions for magento installation on Centos 4.3
|