1

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

ご覧のとおり、自分で解決しようとしましたが、うまくいきません。どんな助けでも大歓迎です...

4

2 に答える 2

6

ubuntu で流れるようなコマンド ラインを使用して、php.ini が呼び出された場所から最初に調べます。

php -i |grep "php.ini"

PHPファイルの次のコードでxdebugが機能しているかどうかをテストできます。

<?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 の 4 つのディレクトリがあります。/apache2filter フォルダーの下にある php.ini ファイルを編集して、Xdebug を有効にする必要がある場合があります。

于 2012-12-15T06:16:09.683 に答える