Windows 10 + Netbeans 8.2 + Wamp 3.0.8 +命令行

我想通过控制台调试我的yii2代码。

所以我已经将xdebug配置到netbeans中,并且它已经通过浏览器工作了。

现在试图通过控制台连接,但它不断显示“等待连接”

几乎我尝试所有的stackoverflow解决方案,如下所示:

当前路径 :c / wamp / www / project / _protected

1)php -d xdebug.profiler_enable = 1 yii croncontroller / xyzaction

2)php -d xdebug.remote_enable = 1 -d xdebug.remote_mode = req -d xdebug.remote_port = 9000 -d xdebug.remote_host = localhost yii croncontroller / xyzaction

3)php -d XDEBUG_SESSION_START = netbeans-xdebug yii croncontroller / xyzaction

我已经设置了断点,但它甚至没有建立连接。

我也禁用了防火墙。

PHP.ini:

xdebug.remote_enable =上

xdebug.remote_enable = 1

xdebug.remote_host =本地主机

; xdebug.remote_host = 192.168.1.102 //尝试了本地IP

xdebug.remote_port = 9000

xdebug.remote_autostart =上

xdebug.idekey = “netbeans的-Xdebug的”

xdebug.remote_mode = REQ

xdebug.remote_handler = “dbgp”

链接地址: http://www.djcxy.com/p/65655.html

上一篇: Windows 10 + Netbeans 8.2 + Wamp 3.0.8 + Command line

下一篇: XDEBUG 2.3.3 not showing in phpinfo() no matter what (XAMPP 1.8.2 PHP 5.4.31 )