是否可以在 PHP 5.3.6/IIS/Windows 2008 上运行 APC?
问题是我找不到有效的二进制文件,APC 部分从未出现在信息显示中,并且 apc 监视器表明 APC 未运行。
有没有办法让APC + PHP + IIS 工作?
谢谢
The problem is that no binary I could find worked, the APC section never appears in the info display and the apc monitor states that APC is not running.
Is there a way to make APC + PHP + IIS work?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要一个合适的图书馆。
但请注意版本号。从你的 phpinfo() 或 php -i 你可以找出你需要哪个版本:
有三个不同的因素:
请参阅: http://windows.php.net/
我通常在这里得到它们(32位):
http://downloads.php.net/pierre/
或此处(64 位):http://www.anindya.com/
You need a fitting library.
Be aware of the version number though. From your phpinfo() or php -i you can find out which version you need:
There are three different factors:
See: http://windows.php.net/
I usually get them here (32bits):
http://downloads.php.net/pierre/
or here (64bits): http://www.anindya.com/
理论上是的,但是正如您所知,您将需要一个合适的二进制文件。我认为问题不在于 IIS,而在于一般的 Windows - 在 Windows 下让 APC DLL 与 Apache 一起工作也是很痛苦的。
简而言之:如果你自己花很多时间编译它,你可能会成功,但我不知道有谁真正成功了。
In theory yes, but you will need, as you already know, a fitting binary. I think the problem is not so much IIS but rather windows in general - its also a pain to get an APC DLL working with Apache under windows.
So in short: if you spend much time compiling it yourself, you might succeed, but I do not know anybody who actually succeeded.