如何在 wamp 中添加 Zend Guard 运行时
Zend Guard 运行时支持缺失!
此网站上的一个或多个文件是由 ZendGuard 编码的,并且未安装或正确配置所需的运行时支持。
当我尝试运行一些使用 zend gurad 加密的脚本时,我收到此错误。
请帮我解决这个问题。
我已经使用 zendguard 加密了我的 php 代码,我还下载并添加了 zendguard dll,更改了 php.ini,如下所示
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_extension="c:/wamp/bin/php/php5.3.8/zend_ext/ZendLoader.dll"
Zend Guard Run-time support missing!
One or more files on this web site were encoded by ZendGuard and the required run-time support is not installed or properly configured.
When I try to run some script encrypted with zend gurad I am getting this error.
Please help me to resolve this.
i have encrypted my php code using zend guard , also i downloaded and added zend guard dll, changed the php.ini as follows
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_extension="c:/wamp/bin/php/php5.3.8/zend_ext/ZendLoader.dll"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
必须禁用 PHP 线程安全(请参阅
phpinfo()
)。PHP Thread safety must be disabled (look at
phpinfo()
).您可以检查很多事情来查看加载程序是否处于活动状态。在控制台上输入 php -v ,您应该得到类似这样的信息。
如果您没有看到 Zend Guard Loader,那么您在加载模块时遇到了初始问题。它还会告诉您是否有其他问题,例如版本错误。
查看我的文档,了解 Zend Loader 问题< /a> 也是如此。
There are quite a few things that you can check to see if the Loader is even active. Type php -v on the console and you should get something like this
If you don't see the Zend Guard Loader then you have an initial problem loading the module. It will also tell you if you have other problems like the wrong version.
Check out my doc about Zend Loader problems as well.