Netbeans and Xdebug in Linux

后端 未结 4 1917
伪装坚强ぢ
伪装坚强ぢ 2020-12-05 08:37

I have installed Xdebug, and I can confirm from phpinfo() that it is correctly installed. I have taken all the steps given in all of the sites that come up with

4条回答
  •  一整个雨季
    2020-12-05 08:57

    Try using xdebug.remote_connect_back=1 instead of xdebug.remote_host to avoid security issues

    In fact,

    zend_extension=path/to/xdebug.so
    xdebug.remote_enable=1
    xdebug.remote_connect_back=1
    

    Must be enough.

    Make sure that project properties->run configuration->advanced->do not open web browser option is NOT selected (in netbeans project config).

    Also, check project url value in run configuration

提交回复
热议问题