Netbeans xdebug 噩梦
我知道您在想什么,另一个 netbeans xdebug 帖子吗?
好吧,我已经尝试了在其他帖子中看到的所有内容,但似乎没有任何效果。这是我的设置:
- 操作系统:Ubuntu 9.10
- PHP:5.2.1
- Netbeans:6.8
以下是我的 /etc/php5/apache2/php.ini
zend_extension=/usr/lib/php5/20060613/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey="netbeans-xdebug"
我尝试过切换端口(到目前为止我已经尝试过 9001、9002 和 9034) ),使用 zend_extension_ts,在配置文件中添加额外的 xdebug 参数,但似乎没有任何效果:Netbeans 仍然说它正在等待连接 (netbeans-xdebug)
如果我查看我的 phpinfo,我确实看到xdebug 的整个部分,参数都是正确的。
任何帮助将不胜感激!
I know what you're thinking, ANOTHER netbeans xdebug post?
Well, I've tried everything I've seen in other posts, and nothing seems to work. Here's my setup:
- OS: Ubuntu 9.10
- PHP: 5.2.1
- Netbeans: 6.8
The following is in my /etc/php5/apache2/php.ini
zend_extension=/usr/lib/php5/20060613/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey="netbeans-xdebug"
I've tried switching ports (I've tried 9001, 9002, and 9034 so far), using zend_extension_ts, adding additional xdebug parameters in the config file, but nothing seems to work: Netbeans still says it's waiting for connection (netbeans-xdebug)
If I look at my phpinfo, I do see a whole section on xdebug, and the parameters are correct.
Any help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道发生了什么,但我将调试端口切换到 9000 并升级到 Netbeans 6.9,现在它可以工作了。
I have no idea what happened, but I switched my debug port to 9000 and upgraded to Netbeans 6.9, and it works now.
添加这些行解决了我的问题(通常)
adding those lines solved my problems (usually)
xdebug 似乎无法在“作为脚本运行”模式下工作
在您本地的网站上尝试一下
xdebug seems not working in "run as script" mode
try it on your local website