Eclipse + Xdebug の設定

Eclipse

で debug の設定して、

run->run debug configurationで設定
URLのAuto Generateのチェックをはずして、/
にした。なぜなら、俺のはcodeigniterでlocalhost
最初のページに飛ぶように設定してあるから。

php.iniの編集した、apache再起動する。
で書いたところは自分で編集した。他は最初からそうなっていた。

[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
ebug.profiler_append = 0
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:\xampp\tmp"
xdebug.profiler_output_name = "xdebug_profile.%R::%u"
xdebug.remote_enable = 1
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
xdebug.trace_output_dir = "C:\xampp\tmp"