我使用configure命令从源代码构建了PHP
'./configure' '--prefix=/usr/local/php-5.2.8' '--with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d' '--with-apxs2=/usr/local/httpd/bin/apxs' '--with-mysql=/usr/local/mysql/' '--with-zlib'
我安装了php memcache extension:
wget http://pecl.php.net/get/memcache
tar -zxvf memcache-2.2.5.tgz
cd memcache-2.2.5
phpize
./configure --enable-memcache
make
make install
我添加到我的/usr/local/lib/php.in
extension=memcache.so
重新启动了我的Apache并运行php-m,但是php似乎没有加载memcache扩展,我从该站点http://www.howtoforge.com/forums/showthread.php?t=26554遵循了此解决方案
我添加了完整路径
extension=/usr/local/lib/php/extensions/no-debug-non-zts-20060613/memcache.so
重新启动了apache,但是没有加载memcache扩展!我谷歌周围,但同样的问题!我如何加载此扩展名_ _”