[备忘] OSX 10.7.5安装MediaWiki中的php53-apc

来源:互联网 发布:安装虚拟linux系统 编辑:程序博客网 时间:2024/06/06 10:57

Mac Mini OSX 10.7.5系统在安装MediaWiki的过程中遇到了下面的apc未安装的问题。


采用brew方法进行安装如下:命令为  brew install php53-apc  

apache2  brew install php53-apc                     ==> Installing php53-apc from homebrew/homebrew-php==> Downloading http://pecl.php.net/get/APC-3.1.10.tgzAlready downloaded: /Library/Caches/Homebrew/php53-apc-3.1.10.tgz==> Patchingpatching file APC-3.1.10/php_apc.hHunk #1 succeeded at 35 with fuzz 2.==> /usr/local/opt/php53/bin/phpize==> ./configure --prefix=/usr/local/Cellar/php53-apc/3.1.10 --with-php-config=/usr/local/opt/php53/bin/php-con==> make==> CaveatsTo finish installing apc for PHP 5.3:  * /usr/local/etc/php/5.3/conf.d/ext-apc.ini was created,    do not forget to remove it upon extension removal.  * Validate installation via one of the following methods:  *  * Using PHP from a webserver:  * - Restart your webserver.  * - Write a PHP page that calls "phpinfo();"  * - Load it in a browser and look for the info on the apc module.  * - If you see it, you have been successful!  *  * Using PHP from the command line:  * - Run "php -i" (command-line "phpinfo()")  * - Look for the info on the apc module.  * - If you see it, you have been successful!==> Summary

然后把得到的libphp5.so 拷贝到apache2所对应的库目录就好了,如下:

sudo cp /usr/local/Cellar/php53/5.3.29/libexec/apache2/libphp5.so /usr/libexec/apache2


最后重启下apache2就行了 (/usr/sbin/httpd)

0 0