Zend 错误:必须加载 apc 扩展才能使用此后端

发布于 2024-09-16 16:18:16 字数 93 浏览 5 评论 0原文

您好,我在公共托管服务器上设置 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 技术交流群。

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

发布评论

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

评论(2

今天小雨转甜 2024-09-23 16:18:16

我假设您正在使用 APC Zend_Cache 后端。要使用它,您需要安装 APC 扩展。

要检查它是否已加载,只需将以下内容粘贴到 php 文件中,然后在浏览器中查看它:

<?php
phpinfo();

搜索类似“此程序使用 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:

<?php
phpinfo();

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.

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