我安装了 Sublime Text 2 XDebug 插件,但无论我做什么,堆栈和跟踪窗格都是空的。按 shift+f8 后菜单生效。“添加断点”也有效。但是,每当我选择开始调试时,我都会使用标准调试信息定向到浏览器,但 Sublime Text 的窗格中不会出现任何内容。
我在 Win7 x64 WAMP Server 2.2 上:PHP 5.4.3 + Apache 2.4.2
我通过 phpinfo() 和 xdebug_is_enabled() 进行了检查,并且 xdebug 已安装并正在运行。
我当前的配置(bin/apache/[apache...]/bin/php.ini,当然:
zend_extension = "[wamp 路径]/bin/php/php5.4.3/ext/php_xdebug-2.2.0-5.4-vc9-
x86_64.dll"
[xdebug]
xdebug.remote_enable = 1
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.remote_autostart = On
;Trace settings
xdebug.auto_trace = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "[wamp path]/wamp/tmp"
请注意,扩展名的路径是正确的。扩展名本身也如上。我检查了这个页面的链接,但仍然没有。
对此的任何帮助将不胜感激。谢谢!