我正在尝试让我的php调试器让NetBeans在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
正如你所看到的,我自己试图解决它,但我无法让它发挥作用。任何帮助将不胜感激......
答案 0 :(得分:4)
首先使用ubuntu中的flow命令行查找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();
&GT;
然后像这样运行脚本: php -e myphpfile.php
你会得到类似的东西: 从{main} root @ magento b中调用@ /var/www/testxdebug.php:8 祝你好运答案 1 :(得分:0)
我猜你编辑了错误的php.ini
我不知道如果你的机器是这种情况,至少在我的机器中,/ etc / php5 /文件夹中有四个目录:/ apache2,/ apache2fiter,/ cli;有时您需要编辑/ apache2filter文件夹下的php.ini文件来激活Xdebug〜希望它能正常工作