Eclipse Helios not stopping at breakpoints

后端 未结 2 687
慢半拍i
慢半拍i 2021-01-18 18:07

I recently upgraded from Eclipse Galileo to Helios. Helios stops at breakpoints ONLY when debugging \"as a PHP Script\", but not when debugging \"as a Web Page\".

Wh

相关标签:
2条回答
  • I am having the exact same issue. I did find some bug reports about breakpoints in Galileo not being able to be used in Helios. I can get Helios to stop on breakpoints at times, but I have to delete all my breakpoints and then start debugging, and only after that add a breakpoint. Needless to say this is very annoying. I'll try and find the link that I saw and add it to here.

    For now I've gone back to Galileo.

    Malks.

    0 讨论(0)
  • 2021-01-18 18:50

    I'm using:

    • Ubuntu 14.04 64 bits
    • Eclipse Luna
    • Nginx
    • PHP Fpm (via socket)

    I solved this debugging problem disabling IPV6

    Edit /etc/sysctl.conf and add the following lines:

    net.ipv6.conf.all.disable_ipv6 = 1
    net.ipv6.conf.default.disable_ipv6 = 1
    net.ipv6.conf.lo.disable_ipv6 = 1
    

    Then reboot or sudo sysctl -p

    0 讨论(0)
提交回复
热议问题