It's now May2012 and the Zend website download page states "Zend Guard Loader (Runtime for PHP 5.3)" - so I assume it's now up to PHP5.3 (?) but I can't seem to find a way to configure my wamp server (Apache Version : 2.2.21 PHP Version : 5.3.8) to work with ZendGuardLoader.
The apache_error.log file states "Failed loading c:/wamp/bin/php/php5.3.8/ZendLoader.dll" on start up, and a simple helloworld.php test states
- Code: Select all
"For The Site Administrator/Web Master
One or more files on your site were encoded with Zend Guard. Thismay be third party libraries that were provided to you by an ISV. Toallow these files to properly run you need to download and installone of the Zend guard run-time libraries. This is either ZendOptimizer or Zend Loader. The proper files can be downloaded fromhttp://www.zend.com/guard/downloads.This software is provided free of charge."
I've configured my php.ini to read:
- Code: Select all
zend_extension = "c:/wamp/bin/php/php5.3.8/ZendLoader.dll"
zend_loader.enable=1
; Disable license checks (for performance reasons)
zend_loader.disable_licensing=0
; 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=
does ZendGuardLoader work in Windows 7(64b)/Apache2.2/PHP5.3 and if so then is there something I've missed (I couldn't find any specific documentation on this topic)