martomo / SublimeTextXdebug

Xdebug debugger client for Sublime Text
MIT License
564 stars 89 forks source link

Start Debugging (Launch Browser) not showing #117

Closed guilhermecvm closed 7 years ago

guilhermecvm commented 9 years ago

Hello,

The Start Debugging (Launch Browser) option is not showing on the menu. It worked before (2 weeks ago), nothing was changed in the project.

I already tried to change the url setting on .sublime-project and Xdebug.sublime-settings, but it didn`t work.

lperry65 commented 9 years ago

I'm having the same issue, I have 2 Dev machines with same project and set up. It shows on one and not the other, cant see why ?

vmoscolini commented 9 years ago

Just remove the current .sublime-project file and save the project again.

Project -> Save Project As...

Then insert again in the .sublime-project file the code below:

{
"folders":
[
    {
        "follow_symlinks": true,
        "path": "."
    }
],
"settings": {
    "xdebug": {
         "url": "http://my.local.website/",
    }
}
}

\ Be sure to change the "url" to your site base URL.