Netbeans waiting for connection to XDEBUG

后端 未结 6 1557
深忆病人
深忆病人 2021-02-02 03:27

Netbeans won\'t connect to xdebug. I\'ve tried suggestions from the following posts:

Debugging IDE's port connection to XDebug: "Waiting to Connect"

6条回答
  •  广开言路
    2021-02-02 03:46

    i was facing a similar problem, in my case i had recently update my php version and the xdebug configuration were in the only php5 folder. had simply had to copy the old xdebug configuration to the new php.ini file of the new version and it worked like before.

    some of the tips to debug this are:

    1. first check if xdebug is install, run (php -v) if xdebug details aren't there then install and add the configuration.
    2. open phpinfo() under xdebug category check if xdebug configuration is loaded.Check for the following settings.
      • remote_enable = on,remote_handler=dbgp

提交回复
热议问题