我在 ubuntu 14.04 上的 netbeans 上收到等待连接 xdebug 的错误
I get the error waiting for connection xdebug on netbeans on ubuntu 14.04
我已经配置了我的文件 php.ini 所以:
路径是/etc/php5/apache/
zend_extension="/usr/lib/php5/20131226/xdebug.so"
xdebug.remote_autostart=1
xdebug.remote_enable = 1
xdebug.remote_handler= "dbpg"
xdebug.remote_mode ="req"
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.remote_connect_back = 1
xdebug.idekey="netbeans-xdebug"
在我的info.php出现活跃
你拼错了:
xdebug.remote_handler= "dbpg"
它应该是 dbgp(或者更确切地说,只是删除整行)。
我已经配置了我的文件 php.ini 所以:
路径是/etc/php5/apache/
zend_extension="/usr/lib/php5/20131226/xdebug.so"
xdebug.remote_autostart=1
xdebug.remote_enable = 1
xdebug.remote_handler= "dbpg"
xdebug.remote_mode ="req"
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.remote_connect_back = 1
xdebug.idekey="netbeans-xdebug"
在我的info.php出现活跃
你拼错了:
xdebug.remote_handler= "dbpg"
它应该是 dbgp(或者更确切地说,只是删除整行)。