How do I update Zend Optimizer?

rocketcity

Verified User
Joined
Aug 18, 2005
Messages
142
Hello,

How do I update Zend Optimizer? This is the first time I have needed to update Zend. I upgraded to php 4.4.0 and got an error message "PHP Warning: Zend Optimizer does not support this version of PHP - please upgrade to the latest version of Zend Optimizer in Unknown on line 0" Currently the server is running "Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies with Zend Extension Manager v1.0.6, Copyright (c) 2003-2004, by Zend Technologies"

Thanks for the help

Greg
 
Code:
cd /usr/local/directadmin/customapache/
pico build

Search for ZEND_VER

Change it so it looks like
Code:
ZEND_VER=2.5.10a

Perform the following commands:

Code:
./build clean
./build zend

And you should be done.
 
I'll be nice and post our internal How-To: we follow this when we build new server installs for DA and do updates that require new copies of Zend Optimizer:
Installing Zend Optimizer, Version 2.5.3 for linux with glibc => version 2.1
07/11/04 18:50 jl

SSH into your server as 'root' user

# change to the /usr/local/lib directory:
cd /usr/local/lib

# Make a backup of your php.ini before you proceed:
cp -p php.ini php.ini.orig

# change to the /usr/local/src directory:
cd /usr/local/src


# Download the file to your server; get it from:
http://www.zend.com/store/products/zend-optimizer.php

# untar it:
tar -xzvf ZendOptimizer-*.tar.gz

cd ZendOptimizer<tab>

./install

# You'll be asked some questions; always use the default actions except for the final question which asks if you want to restart the webserver. Answer that one no, and do a manual restart; the script doesn't work, so restart manually.

# Restart Apache

Jeff
 
Back
Top