PHP remote debugging: XDebug can't connect to JetBrains php Storm client

前端 未结 3 1212
灰色年华
灰色年华 2020-12-15 19:21

i\'s like to get remote debugging to work with the following software configuration:

Win 7 Pro 64bit WAMP Server 2.2 (32bit) incl. Apache 2.2.22, PHP 5.4.3, XDebug p

3条回答
  •  自闭症患者
    2020-12-15 19:33

    Where exactly is your breakpoint in your code? I know that XDebug can be funny.

    For PHP 5.4, your Xdebug settings should be

    [XDebug]
    zend_extension=""
    xdebug.remote_enable=1
    xdebug.remote_port="" (the default port is 9000)
    xdebug.profiler_enable=1
    xdebug.profiler_output_dir=""
    

    http://www.jetbrains.com/phpstorm/webhelp/configuring-xdebug.html

提交回复
热议问题