如何在 wamp 中添加 Zend Guard 运行时

发布于 2024-12-27 16:12:26 字数 394 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嗫嚅 2025-01-03 16:12:26

必须禁用 PHP 线程安全(请参阅 phpinfo())。

PHP Thread safety must be disabled (look at phpinfo()).

注定孤独终老 2025-01-03 16:12:26

您可以检查很多事情来查看加载程序是否处于活动状态。在控制台上输入 php -v ,您应该得到类似这样的信息。

[root@centos ~]# php -v
PHP 5.3.3 (cli) (built: Jan 11 2012 19:53:01)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies with 
Zend Guard Loader v3.3, Copyright (c) 1998-2010, by Zend Technologies

如果您没有看到 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

[root@centos ~]# php -v
PHP 5.3.3 (cli) (built: Jan 11 2012 19:53:01)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies with 
Zend Guard Loader v3.3, Copyright (c) 1998-2010, by Zend Technologies

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文