Zend 错误:必须加载 apc 扩展才能使用此后端
您好,我在公共托管服务器上设置 Zend 应用程序时遇到上述错误。我在同一台服务器上有另一个应用程序,它工作正常,所以我假设 APC 显然已加载。我该如何诊断这个问题?谢谢
Hi I am getting the above error setting up my Zend application on a public hosted server. I have another application on the same sever which works ok so I assume APC is obviously loaded. How can I diagnose this? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://php.net/manual/en/function.extension-loaded。 php
检查“apc”扩展名。
http://php.net/manual/en/function.extension-loaded.php
Check for "apc" extension.
我假设您正在使用 APC Zend_Cache 后端。要使用它,您需要安装 APC 扩展。
要检查它是否已加载,只需将以下内容粘贴到 php 文件中,然后在浏览器中查看它:
搜索类似“此程序使用 Zend 脚本语言引擎:
Zend Engine v2.3.0,版权所有 (c) 1998-2010 Zend Technologies”
如果您在其中看到 APC,则说明它已加载。
I'm assuming you are you using the APC Zend_Cache backend. To use this, you need the APC extension installed.
To check if it is loaded, just paste the following into a php file and then view it in a browser:
Search for the block that says something like "This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies"
If you see APC in there, then it's loaded.