PHP5.3/5.5/5.6安裝Zend Guard Loader代替Zend Optimizer
[重要通告]如您遇疑難雜癥,本站支持知識付費業(yè)務,掃右邊二維碼加博主微信,可節(jié)省您寶貴時間哦!
Zend Optimizer/3.3.3 解密加代碼優(yōu)化,提高PHP應用程序的執(zhí)行速度,顯著降低服務器的CPU負載。
Zend Guard Loader/5.5.0/6.0 解密加代碼優(yōu)化,提高PHP應用程序的執(zhí)行速度,顯著降低服務器的CPU負載。
PHP 5.3.X 開始 Zend Optimizer 正式被 Zend Guard Loader 取代了。安裝方法有所不同,以下是安裝 Zend Guard Loader的具體方法:
下載地址:ZendGuardLoader-php-5.3-Windows.zip
下載好后解壓壓縮包,找到 ZendGuardLoader-php-5.3-Windows\ZendServer\lib\loader\php-5.3.x 目錄下的 ZendLoader.dll 文件,將它放到你的php目錄下ext下:
再編輯php.ini文件,添加一段代碼(如):
[Zend.loader]
zend_loader.enable=1
zend_loader.disable_licensing=1
zend_loader.obfuscation_level_support=3
zend_loader.license_path=
zend_extension=”D:\php\ext\ZendLoader.dll”
保存php.ini配置文件,重啟apache或者IIS
linux環(huán)境下:
[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產品授權的產品許可證。欲了解更多有關如何創(chuàng)建一個許可證文件的信息,請參閱 Zend Guard 用戶指南.
zend_loader.license_path =
6. 如果您使用 Zend debugger,請確保加載 Zend guard Loader。
7. 如果您使用 ioncube loader,請務必在它之前加載 Zend guard Loader。
8. 重新啟動Web服務器。
===========================================================
PHP5.3、PHP5.4安裝ZendOptimizer
現在很多PHP程序都需要ZendOptimizer環(huán)境,但是ZendOptimizer在PHP5.2之后已經被支持,那怎么辦,Zend也不會這么做,原來PHP5.3開始ZendOptimizer正式改為Zend Guard Loader。
Zend Guard Loader的發(fā)布,而且Zend Optimizer不會再更新,并且由于差異很大使用Zend Guard加密代碼時將提示你是否使用php5.3,如果使用5.3那么代碼就無法在php5.2上運行。
Zend Guard Loader安裝說明
1。下載Zend Guard Loader包。(官方地址:http://www.zend.com/en/products/guard/downloads)
Linux:
x86:http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz
x64:http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz
Windows:
http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-Windows.zip
2. 并提取ZendGuardLoader.so(Linux)或ZendLoader.dll(Windows)上傳到服務器。
3. 加載ZendGuardLoader,配置PHP.INI
例子:
zend_extension=C:\web\PHP\ext\ZendLoader.dll
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support=3
zend_loader.license_path=
下面逐一說明:
注意windows版的只支持NTS(非線程安全)版的PHP5.3,即phpinfo中Thread Safety為disabled的!
在你的php.ini文件中添加以下行:
Linux和Mac OS X:zend_extension=<ZendGuardLoader.so的絕對路徑>
Windows的非線程安全的:zend_extension=<ZendLoader.dll的絕對路徑>
4. 添加下面這行加載ZendGuardLoader:
;啟用加載編碼腳本。默認開啟
zend_loader.enable=1
5. 可選:配置ZendGuardLoader
;禁用檢查授權(出于性能原因)
zend_loader.disable_licensing=0
;配置混淆水平 0 – 不支持混淆
zend_loader.obfuscation_level_support=3
;配置尋找授權文件的路徑
zend_loader.license_path=
6. 如果你同時使用Zend debugger,請保證加載Zend guard Loader后再加載Zend debugger
7. 如果你同時使用Ioncube loader,請保證加載Ioncube loader后再加載Zend guard Loader
8. 重啟Web服務。
如果在phpinfo中看到如下內容(不同的版本可能會有所不同):
This program makes use of the Zend Scripting Language Engine:Zend Engine v2.4.0, Copyright (c) 1998-2011 Zend Technologies
說明安裝已經成功!
問題未解決?付費解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!