我知道你在想什么,另一个netbeans xdebug帖子?
好吧,我已经尝试过我在其他帖子中看到的所有内容,似乎没有任何效果。这是我的设置:
以下是我的/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的整个部分,参数是正确的。
非常感谢任何帮助!
答案 0 :(得分:4)
我不知道发生了什么,但我将调试端口切换到9000并升级到Netbeans 6.9,现在可以正常工作。
答案 1 :(得分:1)
添加这些行解决了我的问题(通常)
xdebug.remote_enable = on
xdebug.profiler_enable = on
xdebug.profiler_enable_trigger = on
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
答案 2 :(得分:0)
xdebug似乎无法在“以脚本运行”模式下运行 在您的本地网站上试用