Configure Notepad++ DBGP plugin and XDebug for PHP

Posted by Wasim on Stack Overflow See other posts from Stack Overflow or by Wasim
Published on 2011-02-28T08:01:56Z Indexed on 2012/11/18 11:01 UTC
Read the original article Hit count: 452

Filed under:
|
|
|

I followed these steps:

  1. download x-debug*.dll to D:\Program Files\webserver\php\ext\php_xdebug.dll
  2. modify php.ini and insert following

    zend_extension_ts="D:\Program Files\webserver\php\ext\php_xdebug.dll"
    xdebug.remote_enable=1
    xdebug.remote_handler=dbgp
    xdebug.remote_mode=req
    xdebug.idekey=default
    xdebug.remote_autostart=1
    
  3. restart apache and XDebug is successfully installed.

  4. DBGP is installed successfully and configured with 127.0.0.1

but XDebugger is still not connecting/working with notepad++.

© Stack Overflow or respective owner

Related posts about php

Related posts about plugins