2

eclipse PDTインストールにxdebugをインストールしましたが、ローカルのDebianボックスでXDEBUGを使用してPHPコードをデバッグしようとすると、次のエラーが発生します。

Web起動はすでに実行されています

2つの質問:

  1. Eclipseから完全に抜け出すことなく、Eclipse内でこれを強制終了するにはどうすればよいですか?
  2. 私の指示になかった、設定する必要のある追加の構成設定はありますか?

私は髪を抜くようになっているので、どんな助け/指示もいただければ幸いです。ありがとう!

指示に従って、[動的拡張]セクションのphp.iniファイルに追加したものは次のとおりです。

;load module
zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"

;some options
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req

;The following IP should be of the host running Eclipse!
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.idekey=

;Only enable the following if you want profiler output (lots of data!)
;xdebug.profiler_enable=1
;xdebug.profiler_output_dir=/var/log/XDebug/
;xdebug.profiler_enable_trigger=1
4

1 に答える 1

3

「WebLaunchAlreadyRunning」
デバッグセッションがすでに開始されており、まだ終了していないことを意味します。
「デバッグ」パースペクティブを開き、「デバッグ」タブを参照して、「PHP Webアプリケーション」を選択し、「終了」(赤い四角)ボタンをクリックします。

于 2012-05-04T03:36:19.413 に答える