1、安装扩展最重要的一步就是下载正确的版本的dll文件,和确保php.ini中extension_dir的路径正确。根据phpinfo()寻找PHP版本、ts 或 nts、vc6 或 vc9
2、下载地址:php_memcache.dll
3、把php_mamcache.dll放入正确的ext目录中
4、修改php.ini文件,引入dll
5、重启apache
Linux上启动memcached时出现的错误
这两天一直在Centos6.5上源代码安装环境,比如LAMP、redis、memcached、mongodb,于是在博客中做些记录,遇到的一些问题和解决方法,并且做一些整理。
在启动memcached时出现如下错误提示:
/usr/local/memche/bin/memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory
解决办法:ln -s /usr/local/lib/libevent-2.0.so.5 /us...