Я нашел ее из ответов SO. Мои шаги
Код: Выделить всё
Downloaded `php_xdebug-2.3.2-5.6-vc11-x86_64.dll` and placed inside `php\ext`.
Added the following lines in `php.ini`
zend_extension=php_xdebug-2.3.2-5.5-vc11-x86_64.dll
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_mode=req
xdebug.idekey=default
xdebug.remote_log="c:\temp\xdebug\xdebug.log"
xdebug.show_exception_trace=0
xdebug.show_local_vars=9
xdebug.show_mem_delta=0
xdebug.trace_format=0
xdebug.profiler_enable = 1
xdebug.profiler_output_dir ="c:\temp\xdebug"
Код: Выделить всё
Then downloaded DBGp plugin and placed dll file inside plugins directory of Notepad++;
[Restarted Npp]
plugins->DBGp -> Config
127.0.0.1 EMPTY htdocspath htdocs path
Установил точки останова и запустил мой страница с параметром ?XDEBUG_SESSION_START=debugMe
Но она не останавливается на моих точках останова.
Как мне решить эту проблему или Моя конечная цель — пошаговая отладка PHP. Какие еще варианты.
Подробнее здесь: https://stackoverflow.com/questions/293 ... bgp-plugin