How I can load Zend Optimizer on PHP 5.3?
According to
this post, and assuming you installed PHP 5.3 from 'smeupdates-testing' like I did, it looks like you need to setup the zend and zend-noarch repos:
/sbin/e-smith/db yum_repositories set zend repository \
Name 'Zend Server' \
BaseURL 'http://repos.zend.com/zend-server/rpm/$basearch' \
EnableGroups no \
GPGCheck yes \
GPGKey http://repos.zend.com/zend.key \
Visible no \
status disabled
/sbin/e-smith/db yum_repositories set zend-noarch repository \
Name 'Zend Server - noarch' \
BaseURL 'http://repos.zend.com/zend-server/rpm/noarch' \
EnableGroups no \
GPGCheck yes \
GPGKey http://repos.zend.com/zend.key \
Visible no \
status disabled
expand-template /etc/yum.smerepos.d/sme-base.repo
Then to install the PHP 5.3 version of Zend:
yum --enablerepo=zend --enablerepo=zend-noarch install zend-server-php-5.3
However, the above yum command generates the following failure and aborts:
php-devel-5.3.3-1.el5.sme.1.1.i386 from installed has depsolving problems
--> Missing Dependency: php = 5.3.3-1.el5.sme.1.1 is needed by package php-devel-5.3.3-1.el5.sme.1.1.i386 (installed)
Error: Missing Dependency: php = 5.3.3-1.el5.sme.1.1 is needed by package php-devel-5.3.3-1.el5.sme.1.1.i386 (installed)