Linux-LAMP安装扩展模块memcache

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-LAMP安装扩展模块memcache相关的知识,希望对你有一定的参考价值。

Linux-LAMP安装扩展模块memcache

cd /usr/local/src/
wget http://www.apelearn.com/bbs/data/attachment/forum/memcache-2.2.3.tgz
tar -zxvf memcache-2.2.3.tgz
/usr/local/php/bin/phpize  //Cannot find autoconf. Please check your autoconf installation and the
yum install autoconf -y
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make  //输出报错信息

技术分享图片

vim memcache.c
将所有的:zend_list_insert(pool, le_memcache_pool); 
改为:zend_list_insert(pool, le_memcache_pool TSRMLS_CC);

将所有的:zend_list_insert(mmc, le_pmemcache);
改为:zend_list_insert(mmc, le_pmemcache TSRMLS_CC);
讲所有的:if (!zend_is_callable(failure_callback, 0, NULL))
改为:if (!zend_is_callable(failure_callback, 0, NULL, NULL))
make && make install
vim /usr/local/php/etc/php.ini
extension=memcache.so
/usr/local/php/bin/php -m | grep memcache
memcache

以上是关于Linux-LAMP安装扩展模块memcache的主要内容,如果未能解决你的问题,请参考以下文章

yum安装php扩展模块—memcache

Linux下安装memcache扩展

添加php的memcached扩展模块

无法安装 memcache php 模块

Linux-LAMP配置三

LInux-Lamp搭建