Sublime Text 3(带有Xdebug客户端插件)+ Vagrant VM(Ubuntu)

时间:2014-08-26 11:00:04

标签: ubuntu vagrant sublimetext xdebug sublimetext3

无法在Ubuntu上运行xdebug(即Vagrant VM,主机是Windows 7。

xdebug配置

[CUSTOM]
error_reporting=-1
session.save_path=/var/lib/php/session
date.timezone=America/Chicago
cgi.fix_pathinfo=1
display_errors=true
[XDEBUG]
xdebug.remote_connect_back=1
xdebug.default_enable=1
xdebug.remote_log=/var/log/xdebug/xdebug.log
xdebug.remote_autostart=0
xdebug.remote_enable=1
xdebug.idekey=sublime.xdebug
xdebug.remote_port=9000
xdebug.remote_host=10.0.2.2
xdebug.remote_handler=dbgp

崇高的项目文件:

{
    "folders":
    [
        {
            "follow_symlinks": true,
            "path": "."
        }
    ],
    "settings": {
        "xdebug": {
            "path_mapping": {
                "/var/www/projectname/public" : "C:\\Users\\user\\vagrant\\ubuntu-projectname\\projectname\\public",
             },
             "url": "http://projectname.com/",
             "super_globals": true,
             "close_on_stop": true
        }
    }
}

Sublime显示空白的Xdebug Context和Stack ... 我究竟做错了什么??谢谢你的回复。

1 个答案:

答案 0 :(得分:1)

通过更改端口 9000 修复为9001 关闭 Windows 7防火墙。 并且不要忘记在"工具" - > " Xdebug的" - > "设置 - 用户":

{
    "ide_key": "sublime.xdebug",
    "port": 9001,
}

+之后不要忘记重新启动Sublime Text