Personal tools
You are here: Home GNU / Linux Debian 4.0 Etch Installer Zend Optimizer sur Debian
Document Actions
  • Send this page to somebody
  • Print this page
  • Add Bookmarklet

Installer Zend Optimizer sur Debian

by Pierre-Yves Landuré last modified 2010-06-14 12:12

Zend Optimizer est un outil permettant d'accélérer l'exécution de code PHP, ainsi que les fichiers protégés par une licence à l'aide de Zend Guard. Ce guide vous aide à l'installer sur Debian

Renseignez le numéro de la version que vous souhaitez installer (vous trouverez le numéro de la dernière version sur la page de téléchargement de Zend Guard et Zend Optimizer):

VERSION=3.3.9

Nous déterminons l'architecture du système :

ARCH=$(command dpkg --print-architecture)
if [ "${ARCH}" = "amd64" ]; then
  ARCH="x86_64"
fi

Téléchargez l'archive du logiciel :

command wget http://downloads.zend.com/optimizer/${VERSION}/ZendOptimizer-${VERSION}-linux-glibc23-${ARCH}.tar.gz \
    --output-document=/tmp/ZendOptimizer-${VERSION}.tar.gz

Décompressez l'archive téléchargée :

/bin/tar --directory /tmp -xzf /tmp/ZendOptimizer-${VERSION}.tar.gz

Placez l'extension ZendOptimizer dans le dossier adéquat de votre installation PHP :

command mkdir --parent /usr/lib/php5/20060613/
command cp /tmp/ZendOptimizer-${VERSION}-linux-glibc23-${ARCH}/data/5_2_x_comp/ZendOptimizer.so \
           /usr/lib/php5/20060613/

Ajoutez l'extension ZendOptimizer à votre installation PHP :

command echo "zend_extension=/usr/lib/php5/20060613/ZendOptimizer.so" \
    | command tee /etc/php5/conf.d/ZendOptimizer.ini

Enfin, redémarrez votre serveur Web:

test -x /etc/init.d/apache2 && /etc/init.d/apache2 force-reload
test -x /etc/init.d/lighttpd && /etc/init.d/lighttpd force-reload

Remerciements

BlogBang
Navigation
 

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards:

Wikio