PHP5.3安裝Zend Guard Loader代替Zend Optimizer

Zend Optimizer/3.3.3   解密加代碼優化,提升PHP應用程序的執行速度,顯著下降服務器的CPU負載。
Zend Guard Loader/5.5.0/6.0   解密加代碼優化,提升PHP應用程序的執行速度,顯著下降服務器的CPU負載。 php

PHP 5.3.X 開始 Zend Optimizer 正式被 Zend Guard Loader 取代了。安裝方法有所不一樣,如下是安裝 Zend Guard Loader的具體方法:
linux

下載地址:ZendGuardLoader-php-5.3-Windows.zip apache

下載好後解壓壓縮包,找到 ZendGuardLoader-php-5.3-Windows\ZendServer\lib\loader\php-5.3.x 目錄下的 ZendLoader.dll 文件,將它放到你的php目錄下ext下: 安全


再編輯php.ini文件,添加一段代碼(如):

[Zend.loader] 服務器

zend_loader.enable=1 ide

zend_loader.disable_licensing=1 性能

zend_loader.obfuscation_level_support=3 優化

zend_loader.license_path= ui

zend_extension=」D:\php\ext\ZendLoader.dll」 spa

保存php.ini配置文件,重啓apache或者IIS

linux環境下:
[zend]
zend_extension=/php/lib/php/extensions/ZendGuardLoader.so
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support= 3
zend_loader.license_path=

在你指定的www目錄下新建一個phpinfo()文件.輸入

<?php
echo phpinfo();
?> 

若是探針顯示Zend Guard Loader 代表Zend Guard 已經配置成功;
 


另附:php5.3不支持Zend Optimizer的解決辦法(Zend Guard Loader)


PHP 5.3 下,Zend Optimizer 已經被全新的 Zend Guard Loader 取代

1. 下載 Zend Guard Loader 壓縮包。(官方下載地址:http://www.zend.com/en/products/guard/downloads

2. 解壓並提取 ZendGuardLoader.so(Linux)或 ZendLoader.dll(Windows),對應你的PHP版本。

3. 在你的 php.ini 文件添加下面一行,用來加載 Zend Guard Loader:

Linux 和 Mac OS X: zend_extension = 完整路徑/ZendGuardLoader.so
Windows(非線程安全):  zend_extension = 完整路徑/ZendLoader.dll

4. 在 php.ini 額外新增一行,啓用 Zend Guard Loader:

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服務器。

相關文章
相關標籤/搜索