xdebug does not activate the breakpoint

后端 未结 2 1273
伪装坚强ぢ
伪装坚强ぢ 2021-01-24 03:24

I am using Netbeans to do my project(codeigniter) and my xdebug is configured in php ini. The following are the setting:

zend_extension = \"C:\\xampp\\php\\ext\\php_x         


        
2条回答
  •  轮回少年
    2021-01-24 03:34

    First of all, you do need to turn on xdebug.remote_enable=1 — without that, debugging is not activated and it will not work.

    For requests after the first "login", xdebug.remote_autostart should deal with that, but it is possible that Netbeans doesn't accept the new incoming debugging connection. To find out what Xdebug is trying to do, add the setting xdebug.remote_log=c:\temp\xdebug.log and investigate what's in the log. (You might have to change the path).

提交回复
热议问题