如何在XAMPP mac osx lion中设置memcache

时间:2012-03-16 20:36:16

标签: php macos memcached osx-lion xampp

如何在XAMPP,Mac OSX Lion中设置memcache。在Leopard中非常简单(使用此链接http://m-schmidt.eu/2010/03/30/develop-memcached-web-apps-with-xampp-under-mac-os-x/),但我安装了新的Lion,似乎memcache没有安装。

我在https://gist.github.com/1301997尝试了这个,但没有结果!!

任何人都可以建议做什么。

2 个答案:

答案 0 :(得分:6)

这是帮助我使用Mac OS X Mountain Lion,XAMPP 1.7.3(带有“ pecl install ”的标准方式无效,因为它编译 64位扩展,而XAMPP是在 32位模式下构建的)

(首先注明你没有安装这个如果你收到这种警告


    ...
    grep: /Applications/XAMPP/xamppfiles/include/php/php-5.3.1/php/main/php.h: No such file or directory 
    grep: /Applications/XAMPP/xamppfiles/include/php/php-5.3.1/php/Zend/zend_modules.h: No such file or directory
    ...

  • 我没有手动构建 memcache扩展,而是通过添加使用 32位架构标志配置构建脚本的行来修改 PEAR安装程序: / LI>

    File: /Applications/XAMPP/xamppfiles/lib/php/pear/PEAR/Builder.php

    Was: 
    Line 323: // {{{ start of interactive part
    Line 324: $configure_command = "$dir/configure";
    Line 325: $configure_options = $pkg->getConfigureOptions();

    After modification:
    Line 323: // {{{ start of interactive part
    Line 324: $configure_command = "$dir/configure";
    Line 325: $configure_command .= " CFLAGS='-arch i386' APXSLDFLAGS='-arch i386' ";
    Line 326: $configure_options = $pkg->getConfigureOptions();

  • 然后从终端我执行了这个:

    cd /Applications/XAMPP/xamppfiles/bin
    sudo ./pecl install memcache

  • 重新启动的Apache服务器

瞧!我有php memcache扩展工作!祝你今天愉快! :)

答案 1 :(得分:4)

首先安装Xampp开发人员工具。然后

sudo /Applications/XAMPP/xamppfiles/bin/pecl install memcache

也不需要重新启动apache服务器。

或者您可以查看此完整指南。 http://wiki.cerb5.com/wiki/Setup:Development/XAMPP/Mac_OS_X