在MAMP环境中安装PHP OAuth

发布于 2024-10-26 03:32:17 字数 347 浏览 0 评论 0原文

我已尝试按照所有关于在 MAMP 环境下安装 PHP OAuth 扩展的教程进行操作,但由于某种原因无法加载它。

我正在使用 MAMP 1.9 和 PHP 5.3.2

我遵循的最新教程是: http://lifeofadev.com/2011/03/09/mac-os-x-installing-oauth-so-into-xampp-mamp/

还有其他人有获得这个的经验吗去工作?

谢谢! 丹尼斯

I have tried following ALL tutorials out there on getting PHP OAuth extension installed under the MAMP environment, but can't get it to load for some reason.

I am using MAMP 1.9 with PHP 5.3.2

The most recent tutorial I was following was: http://lifeofadev.com/2011/03/09/mac-os-x-installing-oauth-so-into-xampp-mamp/

Does anyone else have experience with getting this to work?

Thanks!
Dennis

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

愛上了 2024-11-02 03:32:17

升级到 PHP 5.2.17MAMP 2.0 后,我按照以下步骤通过 pecl

  1. 下载 MAMP 服务器组件和库 具体来说,您需要 php-5.2.17.tar.gz
  2. 解压缩 php-5.2 .17.tar.gz 到 /Applications/MAMP/bin/php/php5.2.17/include/php
  3. 针对下载的 php 运行配置。不要构建它。

    cd /Applications/MAMP/bin/php/php5.2.17/include/php;
    ./configure

  4. 删除损坏的 pear 配置:

    mv /Applications/MAMP/bin/php/php5.2.17/conf/pear.conf /Applications/MAMP/bin/php/php5.2.17/conf/pear.conf.bak

  5. 编译oauth

    cd /Applications/MAMP/bin/php/php5.2.17/bin;
    ./pecl install oauth

  6. 更新 php.ini 并添加 extension=oauth.so 这可以在 MAMP 中的文件 -> 下完成编辑模板-> PHP-> PHP 5.2.17 php.ini

After upgrading to MAMP 2.0 for PHP 5.2.17 I followed these steps to install the oauth module through pecl

  1. Download MAMP Server components and libraries Specifically you want php-5.2.17.tar.gz
  2. Uncompress php-5.2.17.tar.gz to /Applications/MAMP/bin/php/php5.2.17/include/php
  3. Run configure against the downloaded php. Do not build it.

    cd /Applications/MAMP/bin/php/php5.2.17/include/php;
    ./configure

  4. Remove broken pear config:

    mv /Applications/MAMP/bin/php/php5.2.17/conf/pear.conf /Applications/MAMP/bin/php/php5.2.17/conf/pear.conf.bak

  5. Compile oauth

    cd /Applications/MAMP/bin/php/php5.2.17/bin;
    ./pecl install oauth

  6. Update php.ini and add extension=oauth.so This can be done in MAMP under File -> Edit Template -> PHP -> PHP 5.2.17 php.ini

软甜啾 2024-11-02 03:32:17

对于 MAMP 3:

  1. 下载并安装 OAuth。

    sudo pecl install oauth
    
  2. 然后,转到 MAMP,然后单击 File >编辑模板> PHP> PHP 5.xx php.ini 并添加以下行

    扩展名 = oauth.so
    

    确保选择当前运行的 php 版本(或按 CMD+4 编辑 MAMP 运行的 php.ini 文件)。

  3. 重新启动 MAMP 服务器。

For MAMP 3:

  1. Download and install OAuth.

    sudo pecl install oauth
    
  2. Then, go to MAMP, and click on File > Edit Template > PHP > PHP 5.x.x php.ini and add the following line

    extension = oauth.so
    

    Make sure to choose the current running php version (or press CMD+4 to edit MAMP's running php.ini file).

  3. Restart MAMP servers.

∞琼窗梦回ˉ 2024-11-02 03:32:17

由于 MAMP 3.0 源很难找到,但您可以从 PHP.net 下载源,请确保版本匹配: http:// /php.net/downloads.php,然后按照 Ryan 说明进行操作。

Since MAMP 3.0 sources are hard to find but you can download sources from PHP.net, make sure the version match : http://php.net/downloads.php, then follow Ryan instructions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文