2016-07-04 11 views
1

XDebugのPHP.iniファイルに以下の設定があります。xdebuggerを起動するPHP.iniファイルの設定は何ですか?

[XDebug] 
;; Only Zend OR (!) XDebug 
zend_extension_ts ="C:\xampp\php\ext\php_xdebug.dll" 
xdebug.remote_enable=true 
xdebug.remote_host=127.0.0.1 
xdebug.remote_port=9001 
xdebug.remote_handler=dbgp 
xdebug.profiler_enable=1 
xdebug.profiler_output_dir="C:\xampp\tmp" 
+1

あなたはおそらく、「動作しない」と「私は変更を加えた」について詳しく説明すべきです部品 – tlenss

答えて

1

XDEBUG_PROFILEというクッキーをサーバーに送信する必要があります。あなたはeasy Xdebug (Firefox)またはXdebug helper (Chrome)のようなあなたのためにそれを行うためにブラウザのプラグインを使用することができます。

あなたがアクティブなデバッガを維持したい場合は、あなたがあなたのphp.iniに次の行を追加することができます。

xdebug.remote_autostart = 1 

https://xdebug.org/docs/remote

関連する問題