Eclipse Helios not stopping at breakpoints

后端 未结 2 688
慢半拍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条回答
  •  离开以前
    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

提交回复
热议问题