• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Installation Problems in CentOS 4.4 - Help needed

R

rajinionnet

Guest
Hello There,
I have trouble installing sitebuilder in CentOS 4.4. I have downloaded the rpms for CentOS 4.3 available at swsoft.

When i try to install the core rpms it says:
rpm -ivh sitebuilder-core-3.0-centos4.build06112310.i386.rpm
error: Failed dependencies:
httpd is needed by sitebuilder-core-3.0-centos4.build06112310.i386
perl-DBD-MySQL is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php5-ioncube >= 3.0 is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51 >= 5.1 is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-curl is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-dom is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-fastcgi is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-ftp is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-gd is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-mbstring is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-mysql is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-openssl is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-pdo is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-pdo_mysql is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-sqlite is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-xsl is needed by sitebuilder-core-3.0-centos4.build06112310.i386
php51-zlib is needed by sitebuilder-core-3.0-centos4.build06112310.i386
sb-php-ioncube is needed by sitebuilder-core-3.0-centos4.build06112310.i386


My machine already has
1. PHP 5.1.6.
2. PERL DBD for MySql
3. Apache


Any help in this regard is appreciated.


Thanks
Raj
 
Sitebuilder have it's own requirements for installing package sitebuilder-core. You can see the whole list of requirements by running following command:

# rpm -qpR sitebuilder-core-3.0-centos4.build06112310.i386.rpm

There could see all the packages which Sitebuilder asks you to install. The thing is Sitebuilder goes with own php5 and checks, if php51 packages are installed. For the rest of the packages it is hard to say anything, but if you really sure that all necessary packages are installed you can install it with '--nodeps' option:

#rpm -ivh sitebuilder-core-3.0-centos4.build06112310.i386.rpm --nodeps
 
Back
Top