发布于 2014-12-25 07:00:43 | 6786 次阅读 | 评论: 3 | 来源: PHPERZ
这里有新鲜出炉的Zend Guard使用指南,程序狗速度看过来!
Zend Guard PHP加密工具
Zend Guard不仅可以实现对PHP应用的脚本进行加密保护和对PHP应用的产品进行商业许可证管理,还可以为许多软件生产商、IT服务提供商提供完善的加密和安全的产品发布系统。
本文为大家讲解的是Zend Guard Run-time support missing问题的解决方法,感兴趣的同学参考下
安装了zend grard加密了php源码,但是当执行脚本的时候,会发现不能正常执行,会显示如下信息
Zend Guard Run-time support missing!
One more more files on this web site were encoded by ZendGuard and the required run-time support is not installed orproperly configured.
......
原来,加密后的php代码需要ZendGuardLoader模块才能正常运行。
下载ZendGuardLoader然后配置php.ini
下载好后解压压缩包,找到目录下的 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="你的PHP安装目录\ext\ZendLoader.dll"
重启nginx或apache即可