PHPStorm: error loading default project
The last thing I did in PHPStorm was to install the plugin and I believe it crashed (or I closed it, I forgot). After restarting anytime I open the project I get the following error:
Error Loading Default Project
com.intellij.diagnostic.PluginException:
com/intellij/openapi/compiler/CompilerManager
[Plugin: com.siberika.idea.pascal]
Does anyone know how to get around this so that I can use my IDE? Thank!
+3
source to share
2 answers
Removing the plugin from the plugins directory didn't work for me. I was able to fix this error by following these steps.
- Open Intellij IDE from idea.exe or idea64.exe
- And then from the splash screen it should be possible to access the plugins
- Plugin screen can now be uninstalled, error.
+2
source to share
To remove a broken or unsupported plugin in PHPStorm (or any InteliJ based IDE), you can do it manually.
- Go to the plugins folder and delete the folder or file
jar
that corresponds to the plugin throwing the exception. - Restart PHPStorm
Plugin folders by OS
- Linux and other Unix systems:
~/.<PRODUCT><VERSION>
- Windows Vista, 7, 8:
<SYSTEM DRIVE>\Users\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\config\plugins
- Windows XP:
<SYSTEM DRIVE>\Documents and Settings\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\config\plugins
- Mac OS X:
~/Library/Application Support/<PRODUCT><VERSION>
eg: Plugin folders for PHPStorm 9.0 on Mac OS X: ~/Library/Application Support/WebIde90
Read more about InteliJ catalogs here .
0
source to share