Hi David,
Thanks for your reply though it was not exactly what I was hoping for.

For the webapp I'm running I need it to have the mcrypt extension, pdo_mysql extension, and the pdf extention.
As far as the pdf requirements I normally install and compile
PDFlib-Lite from here
http://www.pdflib.com/products/pdflib-family/pdflib-lite/PDFlib Lite 7.0.4p1.tar.gz then do:
cd PDFlib Lite 7.0.4p1
./configure
make
make install
Which installs the pdf library ...
Then I use the following command to download and compile the actual pdf extension for PHP:
pecl install pdflib
The install will want to know the path to the pdflib install which is usually
"/usr/local" in a normal install.
Then I only need to add the extention "
extension=pdf.so" to my template fragment.
Followed by:
expand-template /etc/php.ini
/etc/init.d/httpd-e-smith restart
The ZEND Optimizer is used to load encoded files and uses multi-pass code optimizations to double the running speed of PHP applications. This is done by running an optimization of the code created by the run-time compiler, before the code is executed.
I need to be able to install the
ZEND Optimizer extensions for PHP which is done by downloading ZENDOptimizer from here
http://www.zend.com/en/downloads/Then just run the install script which adds the ZEND extensions to the phpini file which in turn needs to be added as a php.ini template fragment which should look like this:
[Zend]
zend_extension_manager.optimizer=/usr/local/Zend/lib/Optimizer-3.2.8
zend_extension_manager.optimizer_ts=/usr/local/Zend/lib/Optimizer_TS-3.2.8
zend_optimizer.version=3.2.8
zend_extension=/usr/local/Zend/lib/ZendExtensionManager.so
zend_extension_ts=/usr/local/Zend/lib/ZendExtensionManager_TS.so
I guess I may end up needing to go to SME8x even though it is just in beta right now because it just seems to be one issue after another trying to get PHP5 running smoothly in SME7.4.
This contrb was really my last hope for getting PHP5 to work on my current SME7.4 production server.
Thank again for all your work on this as I'm sure it has helped many!
-edb