結局、EC-CUBEの解析はPhpStormじゃなくてeclipseでやろうかと。
そう思ってeclipseをインストールしたら、ブレークポイントで止まらない…。
Xdebug関連のコメントアウトだけじゃなくて、追加もしないといけないだった。
毎度インストールする時しかしないので忘れる。備忘録としてここに書いておこう。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
[XDebug] zend_extension = "C:\xampp\php\ext\php_xdebug.dll" xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir = "C:\xampp\tmp" xdebug.profiler_output_name = "cachegrind.out.%t-%s" //コメントアウトするだけじゃなくて、0->1でenableにする xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = "127.0.0.1" xdebug.trace_output_dir = "C:\xampp\tmp" //以下は追加した。 xdebug.remote_mode = req xdebug.remote_port = 9000 |