PHP 5.3 下,Zend Optimizer 已經被全新的Zend Guard Loader 取代...以下為CentOS 6.0 x64 的安裝過程
安裝說明:
1. 下載 Zend Guard Loader 壓縮包。
引用:
32位
http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz
64位
http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz
2. 解壓並 copy ZendGuardLoader.so 至 /usr/lib64/php/modules/
3. 在你的/etc/php.d/ 目錄下新增一個檔案 Zend.ini,用來加載Zend Guard Loader:
引用:
; Enable ZendGuard extension module
extension=ZendGuardLoader.so
4. 在php.ini 最下面新增一行,啟用Zend Guard Loader:
引用:
; Enables loading encoded scripts. The default value is On
zend_loader.enable = 1
5. 可選:可以在php.ini 文件添加以下行到Zend Guard Loader 配置位置:
;禁用許可證檢查(為了性能的原因)
zend_loader.disable_licensing = 0
;讓 Zend Guard Loader 支持混淆級別。級別在 Zend Guard 的官方詳細文檔 。 0 - 不啟用混淆
zend_loader.obfuscation_level_support = 3
;從這個路徑尋找Zend產品授權的產品許可證。欲了解更多有關如何創建一個許可證文件的信息,請參閱Zend Guard 用戶指南.
zend_loader.license_path =
6. 如果您使用Zend debugger,請確保加載Zend guard Loader。
7. 如果您使用ioncube loader,請務必在它之前加載Zend guard Loader。
8. 重新啟動Web服務器。