在 IIS7/Windows Server 2008 上安装 IonCube
我们从需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于将来尝试执行此操作的任何人,您必须执行以下操作:
确定您是否正在运行 PHP 的线程安全版本。 您可以通过访问您的 php_info 或他们提供的文件来检查这一点。 如果您没有运行线程安全版本,请继续:
从典型下载页面下载非 ts 版本(非线程安全版本)(有两个版本可用)
将 Dll 放入您的 Windows\System 文件夹中(我将我的放入子文件夹中)
添加行 zend_extension = C:\Windows\System32\ioncube\ioncube_loader_win_5.2.dll
请注意,它不是 zend_extension_ts,而是 zend_extension
重新启动 IIS
运行其 ioncube-loader-helper.php 文件以验证其是否正常工作。 p>
享受。
For anyone attempting to do this in the future, here is what you must do:
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:
Download the non-ts version (non-threadsafe version) from the typical download page (there are two version available)
Put the Dlls inside of your Windows\System folder (i put mine in a subfolder)
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
restart IIS
Run their ioncube-loader-helper.php file to verify that it worked properly.
Enjoy.