Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

intellij idea "Load error: undefined path variables" again and again

after starting intellij idea I get everytime the message: "Load error: undefined path variables!". I click on fix it and a dialogwindow opens. I delete the path varaible, press apply and after that ok.

When I start idea again, the error is still there.

How can I fix this?

Thx.

like image 704
Ussr Avatar asked Feb 05 '12 10:02

Ussr


2 Answers

Had similar problem with PhpStorm 2016. After using Xdebug, and adding some watch expressions, I couldn't get rid of the annoying warning until I edited the workspace.xml under .idea folder and removed the xml holding the "bad variable".

like image 187
brick Avatar answered Sep 20 '22 12:09

brick


Bug still appears in current web storm versions. For me the solution was to edit JetBrains workspace file and remove breakpoints, there was one that was hidden there. To fix, find the file located at: <project folder>/.idea/workspace.xml. and then find JSON element '<component name="XDebuggerManager">' and remove all breakpoints. element should now look as follows (the 3 dots for non-relevant parts to fix this bug):

...
    <breakpoint-manager>
          <breakpoints>
          </breakpoints>
          ...
          ...
    </breakpoint-manager>
...
like image 26
Ophir Stern Avatar answered Sep 18 '22 12:09

Ophir Stern