首页 文章

Xdebug Notepad DBPG Plugin本地和全局上下文未显示

提问于
浏览
0

我正在使用Xdebug与DBGP Notepad++ plugin

我可以很好地添加断点,监视列表将显示数组,有时对象和悬停在变量上显示其值 . 但是,本地和全局变量选项卡不显示任何内容,每当我将鼠标悬停在某个对象或其方法或刷新本地上下文时,该插件将与“未定义错误”弹出窗口断开连接 . xdebug日志中似乎没有打印错误 .

我在Windows上使用Notepad 6.4.3,Xdebug 2.2.0,Php 5.4.4,Xampp和Symfony2框架 .

我的Xdebug设置是 .

xdebug.auto_trace = 1
xdebug.collect_includes = 1
xdebug.collect_params = 1
xdebug.collect_return = 1
xdebug.default_enable = "On"
xdebug.extended_info = 1
xdebug.idekey = "xdebug"
xdebug.max_nesting_level = 100
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
xdebug.show_local_vars = 9
xdebug.var_display_max_children = 128

谢谢 .

1 回答

  • 0

    我联系了该插件的创建者,他说该插件已被破坏,因为它没有时间来更新它 . 你可以看到讨论here

相关问题