我在使用MAMP的Mac OS X上构建和安装Xdebug时遇到问题。
到目前为止,我在网上进行了广泛的搜索,目前我被困在Xdebug“安装向导”的一部分,它告诉我“运行:phpize”在我下载的源代码上。
当我运行phpize
时,我收到以下消息:
new-host-2:xdebug-2.2.0 Dima$ phpize
grep: /usr/include/php/main/php.h: No such file or directory
grep: /usr/include/php/Zend/zend_modules.h: No such file or directory
grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory
Configuring for:
PHP Api Version:
Zend Module Api No:
Zend Extension Api No:
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.
如果我做一个which phpize
,我会得到:
new-host-2:xdebug-2.2.0 Dima$ which phpize
/usr/bin/phpize
这不是我想使用的版本。我想使用安装了MAMP的phpize
版本,因为我想在MAMP版本的PHP上安装Xdebug。这很令人费解,因为我已经在$PATH
变量中添加了MAMP特定的PHP bin路径到我的.bash_profile。
如果运行echo $PATH
,则会得到:
new-host-2:xdebug-2.2.0 Dima$ echo $PATH
/opt/local/bin:/opt/local/sbin:/Applications/MAMP/bin/php/php5.4.3/bin:/Users/Dima/.rvm/gems/ruby-1.9.2-p290/bin:/Users/Dima/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/Dima/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/Dima/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
MAMP特定的PHP路径显示在'/usr/bin'前面。接下来我尝试运行MAMP特定的phpize
,手动提供完整的路径,如下所示:
new-host-2:xdebug-2.2.0 Dima$ /Applications/MAMP/bin/php/php5.4.3/bin/phpize
-bash: /Applications/MAMP/bin/php/php5.4.3/bin/phpize: Permission denied
现在我在Finder中检查了这些文件的权限,结果显示我有完全的权限来读写这个文件夹中的文件。我有点迷路了。
5条答案
按热度按时间0x6upsns1#
我也有同样的问题,但我找到了更好的解决办法。
Xdebug已在MAMP中。
检查您的 * php.ini * 文件:
一直走下去。你会看到
把它改成
重新启动服务器... * 完成 !
参见:Want to run Xdebug? MAMP is the easiest way… *
lhcgjxsq2#
我尝试了德米特里·萨穆伊洛夫的答案,但对我不太有效,所以我又在谷歌上搜索了一下,结果如下。
1.从SourceForge下载并解包MAMP Components
1.记下phpize过程中没有找到的路径。对我来说是:
1.在MAMP PHP目录中创建所需的路径。
1.确保对目录具有正确的权限
1.找到目标PHP版本(在我的例子中是5.2.17)的组件,并将它们复制到步骤3中创建的路径中。
1.从Xdebug站点运行使用正确phpize版本的说明
ccgok5k53#
经过更多的研究和试错,我设法安装后,做了以下事情:
1.在终端中,我运行了
chmod u+x /Applications/MAMP/bin/php/php5.4.3/bin/*
,以打开phpize和该路径中其他内容的执行权限1.按照this article安装命令行工具
1.按照this article安装最新的Autoconf和相关工具
1.在那之后,按照Xdebug Wizard提供的步骤进行操作就没有问题了
55ooxyrt4#
需要指出的是,“解决方案”中的说明是针对Xdebug2的,我们现在使用的是xdebug3。
要在macOS上的MAMP中启用xdebug3,请执行以下操作:
php.ini
文件的完整路径(/Application/MAMP/......
)。open
,然后粘贴复制的活动php.ini
文件的完整路径。再次检查phpinfo(刷新)并查看ZEND engine下的一行,其中显示
with Xdebug vX.X.X....
如果没有出现,请检查拼写错误或其他打字错误。
请参考xdebug documentation以获取可以添加到php.ini文件中的其他设置。如果您更改PHP版本,则必须重复此过程。
或者购买MAMP Pro许可证,允许从MAMP控制面板执行此操作。
mznpcxlj5#
很简单的。
在 * C:\MAMP\conf\php x.x. x * 目录中,打开每个相关的 * php. ini *。
然后把这些行放到 * php.ini * 中: