在CentOS5.6的LAMP环境中,如何安装php的memcache扩展包?

如题所述

1.在http://pecl.php.net/package/memcache 选择相应想要下载的memcache版本。
2.安装PHP的memcache扩展
#tar vxzf memcache-2.2.6.tgz
# cd memcache-2.2.6
# /usr/local/php/bin/phpize
# ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config --with-zlib-dir
# make
# make install
安装完后,会在/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/里生成一个memcache.so

接下来修改php.ini
extension_dir="/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626"
extension=memcache.so
修改后保存

然后重启httpd服务,再测试phpinfo()看看有没有memcache项,有就说明配置完成了。追问

谢谢圣殿骑士的热心帮助!memcache 扩展包解压后进入扩展包目录,在执行以下命令时提示找不到configure命令,请各们高手解惑。出错命令如下:
./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config --with-zlib-dir

温馨提示:内容为网友见解,仅供参考
无其他回答

linux下phpstudy怎么安装php环境变量
你就再走一次.\/phpstudy.bin 但是你会发现有一行是否安装mysql提示选不安装 这样只需要编译nginx+php5.4 从而节省时间,这样只需要几分钟即可。项目地址:http:\/\/lamp.phpstudy.net\/ 使用说明:服务进程管理:phpstudy (start|stop|restart|uninstall)站点主机管理:phpstudy (add|del|list)ftpd用户管理...

阿里云上的centos 7.2怎么yum安装php 5.6
Installing : php70w-7.0.0-1.w7.x86_64 3\/3 Verifying : php70w-7.0.0-1.w7.x86_64 1\/3 Verifying : php70w-common-7.0.0-1.w7.x86_64 2\/3 Verifying : php70w-cli-7.0.0-1.w7.x86_64 3\/3 Installed:php70w.x86_64 0:7.0.0...

相似回答