1

我正在尝试让 Ne​​tBeans 的 php 调试器在 Ubuntu 中工作。当我尝试启动调试会话时,它会永远尝试建立连接,但最终它给了我一条错误消息,说没有与 netbeans-xdebug 的连接可用。我已经安装了 php5-xdebug,但是当我尝试使用 phpinfo() 查看它时,它没有显示。我的 php/apache2/php.ini 有这些代码行:

zend_extension=/usr/lib/php5/20090626/xdebug.so
[debug]
; Remote settings
xdebug.remote_autostart=off
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey="netbeans-xdebug"

; General
xdebug.auto_trace=off
xdebug.collect_includes=on
xdebug.collect_params=off
xdebug.collect_return=off
xdebug.default_enable=on
xdebug.extended_info=1
xdebug.manual_url=http://www.php.net
xdebug.show_local_vars=0
xdebug.show_mem_delta=0
xdebug.max_nesting_level=100
;xdebug.idekey=

; Trace options
xdebug.trace_format=0
xdebug.trace_output_dir=/tmp
xdebug.trace_options=0
xdebug.trace_output_name=crc32

; Profiling
xdebug.profiler_append=0
xdebug.profiler_enable=0
xdebug.profiler_enable_trigger=0
xdebug.profiler_output_dir=/tmp
xdebug.profiler_output_name=crc32

如您所见,我试图自己解决它,但我无法让它发挥作用。任何帮助将不胜感激...

4

2 回答 2

6

首先使用 ubuntu 中的流动命令行找出调用 php.ini 的位置:

php -i |grep "php.ini"

您可以测试 xdebug 是否正在使用 php 文件中的以下代码:

<?php
function test(){
    echo "Called @ ".xdebug_call_file().
    ":".xdebug_call_line()." from".
    xdebug_call_function();
}
test();

?>

并像这样运行脚本: php -e myphpfile.php

你会得到类似的东西: Called @ /var/www/testxdebug.php:8 from{main}root@magento b

祝你好运

于 2013-10-31T12:15:41.770 回答
0

我猜你编辑了错误的 php.ini

如果您的机器是这种情况,我不会,至少在我的机器中, /etc/php5/ 文件夹中有四个目录: /apache2, /apache2fiter, /cli ;有时你需要编辑/apache2filter文件夹下的php.ini文件来激活Xdebug~希望它有效

于 2012-12-15T06:16:09.683 回答