Xdebug configuration with PHP fastcgi and eclipse?

后端 未结 5 746
-上瘾入骨i
-上瘾入骨i 2021-01-05 01:21

I have been using eclipse-pdt in conjunction with xdebug and apache without problems, for over one year. Things worked flawlessly and I could do all the interactive debuggin

5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-05 02:16

    Problem in solution is "xdebug.remote_autostart = on". If you set in file config "xdebug.remote_autostart = on". This will force Xdebug to start a debug session for every request that is done on this server, without having to specify in the request that a debug session is wanted.

    You need change

    "xdebug.remote_autostart = off"

    And restart web service. In this example is Apache.

    You can read more here: http://doc.waterproof.fr/phpedit/debugging_profiling/configuration/debugger_with_xdebug

    GoodLuck!

提交回复
热议问题