PHP5.3 install Zend Guard Loader method graphic details

  
PHP 5.3.X start Zend Optimizer officially replaced by Zend Guard Loader. The installation method is different. The following is a tutorial on how to install the Zend Guard Loader from Xiaobian.





Zend Guard Loader graphic tutorial:
Zend Optimizer/3.3.3 Decryption plus code optimization, improve the execution speed of PHP applications, significantly reduce the CPU load of the server. Zend Guard Loader/5.5.0/6.0 decryption plus code optimization, improve the execution speed of PHP applications, significantly reduce the CPU load of the server.
PHP 5.3.X Getting Started Zend Optimizer was officially replaced by Zend Guard Loader. The installation method is different. The following is the specific method of installing Zend Guard Loader:
Download: ZendGuardLoader-php-5.3-Windows.zip
After downloading, extract the compressed package and find ZendGuardLoader-php-5.3-Windows\\ The ZendLoader.dll file in the ZendServer\\lib\\loader\\php-5.3.x directory, put it in your php directory under ext:



Save the php.ini configuration file. Restart apache or IIS to create a new phpinfo() file in your specified www directory. Enter
<?php echo phpinfo(); ?> If the probe shows Zend Guard Loader, it indicates that Zend Guard has been configured successfully; >
Attached: php5.3 does not support ZendOptimizer solution (Zend Guard Loader) under

PHP 5.3, Zend Optimizer
has been replaced by the new Zend Guard Loader 1. Download Zend Guard Loader Archive. (Official download address: http://www.zend.com/en/products/guard/downloads)
2. Unzip and extract ZendGuardLoader.so (Linux) or ZendLoader.dll (Windows), corresponding to your PHP version. .
3. Add the following line to your php.ini file to load the Zend Guard Loader:
Linux and Mac OS X: zend_extension = full path /ZendGuardLoader.soWindows (non-thread safe): zend_extension = full path /ZendLoader.dll
4. Add a new line to php.ini and enable Zend Guard Loader:

5. Optional: You can add the following line to the Zend Guard Loader configuration location in the php.ini file:
; Disable license checking (for performance reasons) zend_loader.disable_licensing = 0
; Let Zend Guard Loader support confusion levels. The official details of the level in Zend Guard. 0 – Do not enable obfuscation zend_loader.obfuscation_level_support = 3
; Look for a product license for Zend product licenses from this path. For more information on how to create a license file, see the Zend Guard User Guide.zend_loader.license_path =
6. If you are using Zend debugger, be sure to load the Zend guard Loader.
7. If you use the ioncube loader, be sure to load the Zend guard loader before it.
8. Restart the web server.
Copyright © Windows knowledge All Rights Reserved