Установка Zend Optimizer в PHP 5.3 на Linux-сервер.
1. Скачивается архив:
wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz
2. Из архива в любую папку распаковывается файл “ZendGuardLoader.so”
3. В php.ini пишется:
zend_extension=/путь/куда/распакован/ZendGuardLoader.so zend_loader.enable=1
4. Опционально в php.ini пишется или не пишется ( настройки / если надо ):
; Отключить лицензирование ( ускоряет производительность ) zend_loader.disable_licensing=1 ; The Obfuscation level supported by Zend Guard Loader. ; The levels are detailed in the official Zend Guard Documentation. ; 0 - no obfuscation is enabled zend_loader.obfuscation_level_support=3 ; Path to where licensed Zend products should look for the product license. ; For more information on how to create a license file, see the Zend Guard User Guide zend_loader.license_path=
Взято отсюда.