在 Windows 上安装 PHP APC 扩展

发布于 2024-11-29 15:39:02 字数 433 浏览 0 评论 0 原文

我想安装 PHP 的 APC 扩展。我必须访问页面,我有点卡住。 我从此处下载了一个文件,它为我提供了一个 APC-3.1.9.tgz 文件。 我已经提取了该文件。然而,从我上面提到的页面来看,我的印象是我需要加载 .dll 文件。

我很迷茫、很困惑,我该怎么办?

  • 操作系统: Windows Vista
  • 服务器: Apache
  • PHP: 5.3.5

I want to install the APC extension for PHP. I've got to this page and I'm a little stuck.
I've downloaded a file from here, which gives me a APC-3.1.9.tgz file.
I've extracted the file. However from the page I've mentioned above, I'm given the impression I need to load a .dll file.

I'm lost and confused, what should I be doing?

  • OS: Windows Vista
  • Server: Apache
  • PHP: 5.3.5

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

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

发布评论

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

评论(5

荒路情人 2024-12-06 15:39:02

您可以从 downloads.php.net 下载编译后的 dll。

You can download the compiled dll from downloads.php.net.

櫻之舞 2024-12-06 15:39:02

来自http://www.php.net/manual/en/apc.installation。 php

此 PECL 扩展的 DLL 当前不可用。另请参阅
在 Windows 上构建部分。

换句话说:在 Windows 上没有简单的方法

From http://www.php.net/manual/en/apc.installation.php

A DLL for this PECL extension is currently unavailable. See also the
building on Windows section.

In other words: no easy way on Windows

桜花祭 2024-12-06 15:39:02

我从上面提到的文件 href="http://downloads.php.net/pierre/" rel="nofollow">http://downloads.php.net/pierre/。该 zip 包含两个文件夹:“nts”和“ts”(可能是“线程安全”和“非线程安全”)以及 php_apc.dll 文件。

您必须将此文件放在 PHP 扩展文件夹中(例如 c:\wamp\bin\php5.4.1\ext)并编辑 PHP.ini 文件以添加或取消注释行:

extension=php_apc.dll

After restarting web service (Apache, IIS, etc.) )您可以使用以下命令检查 PHP 配置
查看是否出现“apc”块

I downloaded the file from above mentioned http://downloads.php.net/pierre/. The zip contains two folders: "nts" and "ts" (probably "tread safe" and "non thread safe") with php_apc.dll file.

You must put this file in your PHP extensions folder (for exemple c:\wamp\bin\php5.4.1\ext) and edit PHP.ini file to add or uncomment the line:

extension=php_apc.dll

After restarting web service (Apache, IIS, etc.) you can check the PHP configuration with
<?php phpinfo(); ?> to see if "apc" block appeared

南七夏 2024-12-06 15:39:02

希望寻找 APC for Windows 的人们仍然会查看这篇文章。

我刚刚在这里找到了适用于 Windows 的 APC 3.1.9:

http://dev.freshsite.pl/ php-accelerators/apc.html

已确认可在 Apache 2、PHP 5.3.8、Windows 7(32 位)上运行。

Here's hoping people looking for APC for Windows are still checking this post.

I just found APC 3.1.9 for Windows here:

http://dev.freshsite.pl/php-accelerators/apc.html

Confirmed working on Apache 2, PHP 5.3.8, Windows 7 (32-bit).

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