安装 memcached php 扩展

发布于 2024-11-16 11:49:19 字数 363 浏览 2 评论 0原文

我遵循了无数教程并访问了数十个关于安装 memcached php 扩展的论坛。 我正在使用以下命令。

$ pecl download memcached
$ tar zxvf memcached-1.0.2.tgz
$ cd memcached-1.0.0
$ phpize
$ ./configure
$ make
$ sudo make install

但是当我在 php.ini 文件中添加 extension=memcached.so 行时,memcache 将不会显示在 php 信息中。但 memcache 扩展 (memcache.so) 可以工作。

i have followed countless tutorials and visted dozens of forums on installing the memcached php extension.
I am using the following commands.

$ pecl download memcached
$ tar zxvf memcached-1.0.2.tgz
$ cd memcached-1.0.0
$ phpize
$ ./configure
$ make
$ sudo make install

but when i add the extension=memcached.so line in the php.ini file memcache will not show up in php info. But the memcache extension (memcache.so) will work.

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

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

发布评论

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

评论(1

浅紫色的梦幻 2024-11-23 11:49:19

在您的 php.ini 文件中,extension_dir 设置为什么,确保 memcache.so 文件在那里。通常它被设置为 /usr/local/lib/php/extensions/ 而您的 memcache.so 文件最终位于 /usr/local/lib/php /extensions/no-thread-something2010/。符号链接可以快速解决这个问题。

打开 show_startup_errors 也可能会在日志文件中显示某些内容。

In your php.ini file what is the extension_dir set to, ensure that the memcache.so file is there. Usually it is set to /usr/local/lib/php/extensions/ while your memcache.so file ends up in /usr/local/lib/php/extensions/no-thread-something2010/. A sym link can solve this quickly.

Turning on show_startup_errors may also show something in the log file.

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