如何在PHPDesigner 8上启动Xdebug服务器

时间:2015-02-13 11:29:38

标签: php apache xampp xdebug phpdesigner

我使用XAMPP在Windows 8中使用PHP v5.5.6运行PHP应用程序

我已下载php_xdebug*.dll并将其放入C:\xampp\php\ext\

我已在[XDebug]中配置C:\xampp\php\php.ini部分,如下所示:

[XDebug]
zend_extension=C:\xampp\php\ext\php_xdebug-2.2.7-5.5-vc11.dll
xdebug.remote_enable=true
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="C:\ProgramData\phpDesigner\XDebugCache"

我还配置了Prefferences->调试器以使用C:\xampp\php\php-cgi.exeC:\xampp\php\php.ini

但我仍然无法调试我的代码。当我点击" Debug"按钮,没有任何反应。如果我去Debug-> Xdebug Server-> Start,没有任何反应。

我错过了什么?感谢。

1 个答案:

答案 0 :(得分:0)

假设您已正确安装 你应该去 Run -> Click Start listening for PHP connections(或类似的东西)。

现在phpstorm正在侦听连接。返回浏览器并点击刷新。如果一切都按照它应该配置(顺便看看phpstorm for xdebug,port和所有其他的首选项),phpstorm应该能够捕获连接并让你有机会进入行(F7,F8)