eclipse PDTインストールにxdebugをインストールしましたが、ローカルのDebianボックスでXDEBUGを使用してPHPコードをデバッグしようとすると、次のエラーが発生します。
Web起動はすでに実行されています
2つの質問:
- Eclipseから完全に抜け出すことなく、Eclipse内でこれを強制終了するにはどうすればよいですか?
- 私の指示になかった、設定する必要のある追加の構成設定はありますか?
私は髪を抜くようになっているので、どんな助け/指示もいただければ幸いです。ありがとう!
指示に従って、[動的拡張]セクションの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