Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

PHP linting is not working in SublimeLinter though it says PHP: loaded in the console. I'm working on Windows. Additionally, there are no options if i open the Command Palette except of Extract Annotations. Did anyone had the same problem and knows the solution?

share|improve this question

4 Answers

Additionally, make sure you've given the path to php.exe in your user settings -

  • (prefs>pkg settings>sublimelinter>settings - user)

  • should look like this (if your path is "C:\xampp\php\php.exe"):

{ "sublimelinter": true, "sublimelinter_executable_map": { "php":"/xampp/php/php.exe" } }

share|improve this answer

I just had the same issue. The cause for my problem was that all PHP files where opened with the HTML5 syntax. You can check the current syntax by pasting the following command in your SublimeText console:

sublime.active_window().active_view().settings().get('syntax')

To set php as a default for the current file type, you can go to: view > syntax > Open all current extensions as... > php

Hope this helps!

share|improve this answer

For my Windows i had to go with this: php.exe file path on Windows 7 didn't do the trick for me, while php-win.exe did:

{
    "sublimelinter_executable_map":
    {
        "php":"C:/php/php-win.exe"
    }
}
share|improve this answer

For windows I did this and it worked, use \\ and it should work!

{

  "sublimelinter_executable_map":
    {

        "php":"C:\\Users\\Wasil\\Documents\\BitNami\\php\\php-win.exe"
    }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.