我正在尝试让 NetBeans 的 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
如您所见,我试图自己解决它,但我无法让它发挥作用。任何帮助将不胜感激...