在 IIS7/Windows Server 2008 上安装 IonCube

发布于 2024-07-25 16:46:05 字数 162 浏览 2 评论 0原文

我们从需要 IonCube 的客户端继承了一个 PHP 项目。 我们的盒子都在 IIS7 上运行,尽管我们已按照说明进行配置,但它并未加载解码器库。 你们中有人在 Win 2k8(32 位)上成功启动并运行了 IonCube 吗? 我正在为此烦恼,所以任何帮助将不胜感激。

谢谢

we've inherited a PHP project from a client that requires IonCube. Our boxes all run on IIS7 and although we've followed the instructions for configuring it, it isn't loading the decoder library. Have any of you had any success with getting IonCube up and running on Win 2k8 (32bit)? I'm pulling my hair out over this so any help would be beyond appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

温暖的光 2024-08-01 16:46:06

对于将来尝试执行此操作的任何人,您必须执行以下操作:

  1. 确定您是否正在运行 PHP 的线程安全版本。 您可以通过访问您的 php_info 或他们提供的文件来检查这一点。 如果您没有运行线程安全版本,请继续:

  2. 从典型下载页面下载非 ts 版本(非线程安全版本)(有两个版本可用)

  3. 将 Dll 放入您的 Windows\System 文件夹中(我将我的放入子文件夹中)

  4. 添加行 zend_extension = C:\Windows\System32\ioncube\ioncube_loader_win_5.2.dll
    请注意,它不是 zend_extension_ts,而是 zend_extension

  5. 重新启动 IIS

  6. 运行其 ioncube-loader-helper.php 文件以验证其是否正常工作。 p>

享受。

For anyone attempting to do this in the future, here is what you must do:

  1. Determine if you are running a thread-safe version of PHP. You can check that by accessing your php_info or the file they provide. If you are not running a threadsafe version continue:

  2. Download the non-ts version (non-threadsafe version) from the typical download page (there are two version available)

  3. Put the Dlls inside of your Windows\System folder (i put mine in a subfolder)

  4. Add the line zend_extension = C:\Windows\System32\ioncube\ioncube_loader_win_5.2.dll
    note that it is NOT zend_extension_ts and is zend_extension instead

  5. restart IIS

  6. Run their ioncube-loader-helper.php file to verify that it worked properly.

Enjoy.

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