Reputation: 1984
The last thing I did in PHPStorm was install a plugin, then I believe it crashed (or I shut it down, I forget). After restarting, any time I open a project I get the following error:
Error Loading Default Project
com.intellij.diagnostic.PluginException:
com/intellij/openapi/compiler/CompilerManager
[Plugin: com.siberika.idea.pascal]
Anyone know how to get around this so I can use my IDE? Thanks!
Upvotes: 3
Views: 2346
Reputation: 16157
Deleting the plugin from the plugins directory did not work for me. I was able to fix this error by doing the following.
Upvotes: 3
Reputation: 302
To delete a broken or unsupported plugin in PHPStorm (or any InteliJ based IDE), you can do it manually.
jar
file that corresponds with the plugin causing the exception.~/.<PRODUCT><VERSION>
<SYSTEM DRIVE>\Users\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\config\plugins
<SYSTEM DRIVE>\Documents and Settings\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\config\plugins
~/Library/Application Support/<PRODUCT><VERSION>
e.g.: Plugins folders for PHPStorm 9.0 in Mac OS X: ~/Library/Application Support/WebIde90
More information about InteliJ directories here.
Upvotes: 1