PhpStorm debugger not stopping at BreakPoints; keeps waiting for xdebug _SESSION_

前端 未结 15 1773
挽巷
挽巷 2021-01-31 14:21

Updated question : PhpStorm | WebMatrix (IISExpress) | Xdebug.remote_port | — Which Port(s) to put where?


I\'m running localhost web server on my Windows machine w

15条回答
  •  感情败类
    2021-01-31 15:04

    These lines are crucial to make it work (in php.ini):

    zend_extension=/usr/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so
    xdebug.remote_autostart = 1 # <-------- THIS
    xdebug.remote_enable = 1 # <----------- AND THIS
    

    Without these lines xdebug will never work on phpstorm ;)

提交回复
热议问题