在MAMP环境中安装PHP OAuth
我已尝试按照所有关于在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
升级到 PHP 5.2.17 的 MAMP 2.0 后,我按照以下步骤通过 pecl
针对下载的 php 运行配置。不要构建它。
cd /Applications/MAMP/bin/php/php5.2.17/include/php;
./configure
删除损坏的 pear 配置:
mv /Applications/MAMP/bin/php/php5.2.17/conf/pear.conf /Applications/MAMP/bin/php/php5.2.17/conf/pear.conf.bak
编译oauth
cd /Applications/MAMP/bin/php/php5.2.17/bin;
./pecl install oauth
更新 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
Run configure against the downloaded php. Do not build it.
cd /Applications/MAMP/bin/php/php5.2.17/include/php;
./configure
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
Compile oauth
cd /Applications/MAMP/bin/php/php5.2.17/bin;
./pecl install oauth
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
对于 MAMP 3:
下载并安装 OAuth。
然后,转到 MAMP,然后单击
File >编辑模板> PHP> PHP 5.xx php.ini
并添加以下行确保选择当前运行的 php 版本(或按 CMD+4 编辑 MAMP 运行的 php.ini 文件)。
重新启动 MAMP 服务器。
For MAMP 3:
Download and install OAuth.
Then, go to MAMP, and click on
File > Edit Template > PHP > PHP 5.x.x php.ini
and add the following lineMake sure to choose the current running php version (or press CMD+4 to edit MAMP's running php.ini file).
Restart MAMP servers.
由于 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.