安装 memcached php 扩展
我遵循了无数教程并访问了数十个关于安装 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
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 theextension_dir
set to, ensure that thememcache.so
file is there. Usually it is set to/usr/local/lib/php/extensions/
while yourmemcache.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.