Ошибка при запуске phpstorm

I just downloaded PhpStorm 5 on my quite fresh ubuntu.
During the first start I installed a couple of plug-ins.
Now — after the installation of those plug-ins — PhpStorm is not starting up anymore.
No splash screen is showing up. No error gets written on the terminal:

gue@ubuntu:~$ phpstorm
Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)
gue@ubuntu:~$ 

What shall I do with that drunken sailor?
I can’t find any logfiles, no configuration file/directory in my home directory.

Since I’m used to Eclipse I’ve no clue where to look for a trace in this IntelliJ derivate…

asked Feb 2, 2013 at 14:53

gue's user avatar

guegue

1,0992 gold badges9 silver badges18 bronze badges

8

If you’re on Windows deleting the following directory helped me:

C:Users<user>AppDataRoamingJetBrains

answered May 19, 2021 at 10:32

Mehrdad Dehghani's user avatar

1

Some plug-ins can cause problems and prevent IDE from starting, if it happens, you should delete the directory containing plug-in manually. Location of this directory depends on the system and product, details are available in the FAQ.

For PhpStorm on Linux it would be ~/.WebIde50/config/plugins.

answered Feb 2, 2013 at 15:45

CrazyCoder's user avatar

CrazyCoderCrazyCoder

387k170 gold badges984 silver badges897 bronze badges

This happend to me too, I had created a custom vmoptions file, and entered incorrect values. I fixed it by deleting it in ~/.WebIde50/phpstorm.vmoptions

answered May 4, 2016 at 9:46

Lasse Nielsen's user avatar

i had the same problem , i fixed it just with removing the file C:Users.PhpStorm2016.2

answered Jun 12, 2017 at 8:58

Aouidane Med Amine's user avatar

0

In linux, I fixed it by deleting vmoptions file of PhpStorm and then launching it again:

mv  ~/.config/JetBrains/PhpStorm*/phpstorm64.vmoptions ~/.config/JetBrains/PhpStorm*/__phpstorm64.vmoptions

answered Jul 31, 2021 at 9:07

Amir Fo's user avatar

Amir FoAmir Fo

5,0531 gold badge43 silver badges49 bronze badges

Open Terminal Linux Ubuntu 20.04 and execute

pkill -9 -fei phpstorm
phpstorm

answered Apr 11 at 5:22

Ubaid Rehman's user avatar

It might be possible if openjdk is installed then phpstorm not opened.

So remove first then follow steps that given in below link.
I solve the problem same way.

wiki.jetbrains.net/intellij/Installing_and_running_PHPStorm_on_Ubuntu

answered Jun 28, 2014 at 6:24

Yatin Mistry's user avatar

Here is how you fix this: Rename C:UsersUSERNAME.PhpStorm2016.3 to something else (anything, like PhpStorm2016.whatever) , it will start the program if you click on the phpStorm icon, then choose to import settings, and you’re good to go ;)

answered Dec 19, 2017 at 17:07

Fery Kaszoni's user avatar

Fery KaszoniFery Kaszoni

3,9361 gold badge18 silver badges11 bronze badges

I am using PhpStorm2020.2.1. I referred to Configuration directory. I accessed the folder %AppData%JetBrainsPhpStorm2020.2, renamed it just in case I may need some files in future.

Voila! I can start my PhpStorm2020.2.1 again!

answered Sep 23, 2020 at 2:53

AEWRocks's user avatar

AEWRocksAEWRocks

1571 gold badge2 silver badges10 bronze badges

For me I had to remove all cache for the IDE located in:

~/.cache/JetBrains/

answered Aug 10, 2021 at 14:22

Michal Przybylowicz's user avatar

I have changed the VMOptions under the Help menu on MacOS and it just would not start up again. It just silently failed every time. I found the file at /Applications/PhpStorm.app/Contents/MacOS/phpstorm and ran it in the terminal, which gave me an output with the following error:

Invalid ReservedCodeCacheSize=3072M. Must be at most 2048M.

Luckily, it also gave me the path to the VMOptions file in one of the rows of the output, parseVMOptions: /Users/barnabas/Library/Application Support/JetBrains/PhpStorm2022.3/phpstorm.vmoptions in my case, so I could change it back to a valid configuration. Crisis averted.

answered Dec 13, 2022 at 19:45

Barnabas Kecskes's user avatar

Simple
Go to your task manager
end any task on php-storm
and restart the ide again
it will work

answered Jul 8, 2022 at 17:11

Nahin Ahmed's user avatar

Open Terminal Linux Ubuntu 20.10

  1. YOU@USER:~$ cd ~/.config
  2. YOU@USER:~/.config$ ls

Obs: Locate the >>> JetBrains <<< folder, after that delete it your default app settings will disappear more it will open again

  1. YOU@USER:~/.config$ sudo rm -rf JetBrains/

  2. Open PHPSTORM

tomerpacific's user avatar

tomerpacific

4,57413 gold badges34 silver badges51 bronze badges

answered Apr 12, 2021 at 13:45

Darlis's user avatar

I just downloaded PhpStorm 5 on my quite fresh ubuntu.
During the first start I installed a couple of plug-ins.
Now — after the installation of those plug-ins — PhpStorm is not starting up anymore.
No splash screen is showing up. No error gets written on the terminal:

gue@ubuntu:~$ phpstorm
Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)
gue@ubuntu:~$ 

What shall I do with that drunken sailor?
I can’t find any logfiles, no configuration file/directory in my home directory.

Since I’m used to Eclipse I’ve no clue where to look for a trace in this IntelliJ derivate…

asked Feb 2, 2013 at 14:53

gue's user avatar

guegue

1,0992 gold badges9 silver badges18 bronze badges

8

If you’re on Windows deleting the following directory helped me:

C:Users<user>AppDataRoamingJetBrains

answered May 19, 2021 at 10:32

Mehrdad Dehghani's user avatar

1

Some plug-ins can cause problems and prevent IDE from starting, if it happens, you should delete the directory containing plug-in manually. Location of this directory depends on the system and product, details are available in the FAQ.

For PhpStorm on Linux it would be ~/.WebIde50/config/plugins.

answered Feb 2, 2013 at 15:45

CrazyCoder's user avatar

CrazyCoderCrazyCoder

387k170 gold badges984 silver badges897 bronze badges

This happend to me too, I had created a custom vmoptions file, and entered incorrect values. I fixed it by deleting it in ~/.WebIde50/phpstorm.vmoptions

answered May 4, 2016 at 9:46

Lasse Nielsen's user avatar

i had the same problem , i fixed it just with removing the file C:Users.PhpStorm2016.2

answered Jun 12, 2017 at 8:58

Aouidane Med Amine's user avatar

0

In linux, I fixed it by deleting vmoptions file of PhpStorm and then launching it again:

mv  ~/.config/JetBrains/PhpStorm*/phpstorm64.vmoptions ~/.config/JetBrains/PhpStorm*/__phpstorm64.vmoptions

answered Jul 31, 2021 at 9:07

Amir Fo's user avatar

Amir FoAmir Fo

5,0531 gold badge43 silver badges49 bronze badges

Open Terminal Linux Ubuntu 20.04 and execute

pkill -9 -fei phpstorm
phpstorm

answered Apr 11 at 5:22

Ubaid Rehman's user avatar

It might be possible if openjdk is installed then phpstorm not opened.

So remove first then follow steps that given in below link.
I solve the problem same way.

wiki.jetbrains.net/intellij/Installing_and_running_PHPStorm_on_Ubuntu

answered Jun 28, 2014 at 6:24

Yatin Mistry's user avatar

Here is how you fix this: Rename C:UsersUSERNAME.PhpStorm2016.3 to something else (anything, like PhpStorm2016.whatever) , it will start the program if you click on the phpStorm icon, then choose to import settings, and you’re good to go ;)

answered Dec 19, 2017 at 17:07

Fery Kaszoni's user avatar

Fery KaszoniFery Kaszoni

3,9361 gold badge18 silver badges11 bronze badges

I am using PhpStorm2020.2.1. I referred to Configuration directory. I accessed the folder %AppData%JetBrainsPhpStorm2020.2, renamed it just in case I may need some files in future.

Voila! I can start my PhpStorm2020.2.1 again!

answered Sep 23, 2020 at 2:53

AEWRocks's user avatar

AEWRocksAEWRocks

1571 gold badge2 silver badges10 bronze badges

For me I had to remove all cache for the IDE located in:

~/.cache/JetBrains/

answered Aug 10, 2021 at 14:22

Michal Przybylowicz's user avatar

I have changed the VMOptions under the Help menu on MacOS and it just would not start up again. It just silently failed every time. I found the file at /Applications/PhpStorm.app/Contents/MacOS/phpstorm and ran it in the terminal, which gave me an output with the following error:

Invalid ReservedCodeCacheSize=3072M. Must be at most 2048M.

Luckily, it also gave me the path to the VMOptions file in one of the rows of the output, parseVMOptions: /Users/barnabas/Library/Application Support/JetBrains/PhpStorm2022.3/phpstorm.vmoptions in my case, so I could change it back to a valid configuration. Crisis averted.

answered Dec 13, 2022 at 19:45

Barnabas Kecskes's user avatar

Simple
Go to your task manager
end any task on php-storm
and restart the ide again
it will work

answered Jul 8, 2022 at 17:11

Nahin Ahmed's user avatar

Open Terminal Linux Ubuntu 20.10

  1. YOU@USER:~$ cd ~/.config
  2. YOU@USER:~/.config$ ls

Obs: Locate the >>> JetBrains <<< folder, after that delete it your default app settings will disappear more it will open again

  1. YOU@USER:~/.config$ sudo rm -rf JetBrains/

  2. Open PHPSTORM

tomerpacific's user avatar

tomerpacific

4,57413 gold badges34 silver badges51 bronze badges

answered Apr 12, 2021 at 13:45

Darlis's user avatar

Не знаю куда именно отнести свой вариант, но кажется по названию эта ветка самая подходящая, поэтому напишу здесь, вдруг кому пригодится) Смотрите, переустанавливал несколько раз phpstorm от 2019.3.3 до 2021.2.3. Когда прообновлялся до 2021.2.3 перестали запускаться версии после 2020.n.n. Соответственно все 2019.n.n. и 2020.n.n. — работали, а 2021.n.n. — не работали. Гуглил гуглил, ничего не помогало из предложеных вариантов, как и переустановки с вычисткой реестра и перезагрузками, затем решил начать переименовывать все папки JetBrains из UserAppData и спустя две минуты и такой-то матери я нашёл эту(и) паку(и) которые создавали помеху при запуске. Оказалось всё что нужно было сделать, это удалить: «C:UsersUserAppDataRoamingJetBrainsPhpStorm2021.1»
«C:UsersUserAppDataRoamingJetBrainsPhpStorm2021.2»
Потом запустить PhpStorm и он создаст их(эти удалённые папки) заново и всё заработает. Надеюсь, это будет кому-то полезно. Потому что я ничего такого не нашёл при поиске

I installed PhpStorm on my machine (Windows XP) at work. At first it was fine and I used it for a day or so. After the installation of (likely) an incompatible plugin, the IDE freezes on startup.

I already tried reinstalling and updating Java. I even cleared the registry of any JetBrains and PhpStorm entries and installed it again.

I’ve searched the JetBrains forums, but it seems the problem I have is not a common one.
Maybe one of you had the same issue?

Any hints would be much appreciated.

Makoto's user avatar

Makoto

104k27 gold badges189 silver badges228 bronze badges

asked May 4, 2011 at 14:20

meatfeed's user avatar

Try to delete application plug-ins/caches. If it doesn’t help, also delete settings. See the FAQ for the directories locations on your system.

Most likely idea.log contains the exceptions from the plug-in which causes this problem. I’d recommend sending this log to the plug-in vendor.

answered May 4, 2011 at 14:43

CrazyCoder's user avatar

CrazyCoderCrazyCoder

387k170 gold badges984 silver badges897 bronze badges

10

I had a similar issue and followed @CrazyCoder’s instructions (thank you!), but the error turned out to be with related to indexing.

I reopened the IDE, and hurried to File > Invalidate Caches / Restart ...

answered Oct 12, 2019 at 0:10

grim's user avatar

grimgrim

6,64911 gold badges37 silver badges57 bronze badges

Had a different issue (Ubuntu 20.x)

My use case :

I launched phpstorm and hit «cancel» while it was automatically reloading my last project (which closed PS immediately)

Then, trying to launch it just did show the splash screen for some seconds… and nothing. (tried it several times).

It turned out the process were still somewhere, while no GUI was visible.

ps aux | grep phpstorm had several (many) results.

All those zombie processes moaning «JetBraiiiiiiins» was a quite terrifying sight to me

Solution ? Kill’em all !

pkill -f phpstorm

answered Aug 6, 2020 at 15:20

Balmipour's user avatar

BalmipourBalmipour

2,9851 gold badge24 silver badges27 bronze badges

I met similar issue while starting my PhpStorm 7.
Then I followed CrazyCoder’s instructions to delete a new-installed plug-in at ~/Library/Application Support/WebIde70 (using Mac) and it finally works…

answered Apr 28, 2016 at 3:43

Skyler Lan's user avatar

C:Usersusername.PhpStorm2016.1systemLocalHistory

answered Jun 17, 2016 at 3:40

shyam sasi's user avatar

On Linux, when running pstorm from the terminal, it may complain about:

/lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by /home/user/.local/share/JetBrains/Toolbox/apps/PhpStorm/ch-0/201.7846.90/jbr/lib/libjfxmedia.so)

Which can be fixed by adding this into ~/.bashrc:

export LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/usr/local/lib64:/usr/lib64

answered Jun 23, 2020 at 15:17

Martin Zeitler's user avatar

Solution to the problem that PhpStorm64 cannot be started

It has been several years since CSDN was used, but I have never tried to write my own content, just as IDE problems cannot be solved, I write blog 😅 Accumulate my poor writing experience.

As a phper, PhpStorm IDE is undoubtedly the most powerful. When I used sublime, I thought it was enough to have a nice interface, but after contacting PhpStorm, I didn’t use sublime as the main force (maybe I didn’t install any plug-ins).

  1. It is convenient to view function parameter information, detect errors, highlight and other necessary functions
  2. Remote synchronization server code
  3. Docker container / image is visualized directly, and docker compose is supported
  4. With git visualization, you don’t need to install other visualization tools
  5. . . . There’s a lot more I can’t remember

After two months’ use of Phpstorm, he became a highly dependent patient, in order to be able to smoothly open two project CV s 😂 , and open multiple chrome windows to view documents. I also changed the single channel 8g memory of the notebook to 16g.

But yesterday, I couldn’t open it directly and didn’t report a mistake! 😰
It’s the kind of process that doesn’t respond at all. The process is directly over

But 32-bit can start normally after installing JDK 32-bit, only 64 bit can’t start
Besides, not only PhpStorm64.exe can’t be opened, but also PyCharm64 can’t be opened

After thinking about what causes the problem many times, here are some methods and troubleshooting ideas I tried:

1. Delete AppDataRoamingJetBrainsPhpStorm2020.1

First of all, Google to see how people who ask the same questions can solve it
Mostly to delete this folder and restart AppDataRoamingJetBrainsPhpStorm{version}

Think about the relationship between server activation and crack patch, involving this file.
So I deleted it several times, so that I reinstalled Phpstorm, but it didn’t work in the end. 🤔

2. Reinstall JDK

If you open the 32-bit version, an error will be reported. You need to download the 32-bit JDK

My system version bit is win10 64 bit professional, so I naturally want to use 64 bit startup mode, but 64 bit startup directly does not report any error or respond, so I choose to reinstall JDK

Install and uninstall. Try version 8, 9 and 11. None of them can run 64 bit 😫

3. Uninstall updates

After thinking about the incompatibility caused by the recent windows update, after all, there have been before. After updating my digital board driver, it will not work. Finally, I need to uninstall the update.
If you want win10 to be stable, you can’t update it frequently 🙄

Junk windows 🙃

4. Review phpstorm.bat

This bat file should be used by the monitor program to run and output the error log. Add pause at the end to view the complete run cycle

"%JAVA_EXE%" %ALL_JVM_ARGS% -cp "%CLASS_PATH%" com.intellij.idea.Main %*

SET PATH=%OLD_PATH%

pause

Click to run it

OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2020-06-20 12:34:52,590 [   3800]   WARN - Container.ComponentManagerImpl - Do not use constructor injection (requestorClass=org.jetbrains.plugins.phpstorm.PhpStormInitialConfigurator)
javassist.CannotCompileException: by java.lang.reflect.InvocationTargetException
at javassist.util.proxy.DefineClassHelper$JavaOther.defineClass(DefineClassHelper.java:220)
at javassist.util.proxy.DefineClassHelper$Java11.defineClass(DefineClassHelper.java:52)
at javassist.util.proxy.DefineClassHelper.toClass(DefineClassHelper.java:260)
at javassist.ClassPool.toClass(ClassPool.java:1240)
at javassist.ClassPool.toClass(ClassPool.java:1098)
at javassist.ClassPool.toClass(ClassPool.java:1056)
at javassist.CtClass.toClass(CtClass.java:1298)
at com.mallowigi.idea.MTHackComponent.hackScrollbars(MTHackComponent.java:147)
at com.mallowigi.idea.MTHackComponent.<clinit>(MTHackComponent.java:58)
at java.base/java.lang.Class.forName0(Native Method)
at java.base/java.lang.Class.forName(Class.java:398)
at com.intellij.serviceContainer.ComponentManagerImpl.createListener(ComponentManagerImpl.kt:713)
at com.intellij.util.messages.impl.MessageBusImpl.subscribeLazyListeners(MessageBusImpl.java:204)
at com.intellij.util.messages.impl.MessageBusImpl.calcSubscribers(MessageBusImpl.java:320)
at com.intellij.util.messages.impl.MessageBusImpl.getTopicSubscribers(MessageBusImpl.java:366)
at com.intellij.util.messages.impl.MessageBusImpl.postMessage(MessageBusImpl.java:344)
at com.intellij.util.messages.impl.MessageBusImpl.sendMessage(MessageBusImpl.java:396)
at com.intellij.util.messages.impl.MessageBusImpl.lambda$createTopicHandler$3(MessageBusImpl.java:237)
at com.sun.proxy.$Proxy33.appClosing(Unknown Source)
at com.intellij.openapi.application.impl.ApplicationImpl.doExit(ApplicationImpl.java:606)
at com.intellij.openapi.application.impl.ApplicationImpl.exit(ApplicationImpl.java:589)
at com.intellij.openapi.application.impl.ApplicationImpl.restart(ApplicationImpl.java:536)
at com.intellij.openapi.application.ex.ApplicationEx.restart(ApplicationEx.java:112)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at fuck_the_regulations_v321.ev.run(ev.java:42)
at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:776)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:727)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85)
at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:746)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:416)
at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:117)
at java.desktop/java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:190)
at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:235)
at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:233)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.desktop/java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:233)
at java.desktop/java.awt.Dialog.show(Dialog.java:1063)
at java.desktop/java.awt.Component.show(Component.java:1734)
at java.desktop/java.awt.Component.setVisible(Component.java:1681)
at java.desktop/java.awt.Window.setVisible(Window.java:1031)
at java.desktop/java.awt.Dialog.setVisible(Dialog.java:998)
at fuck_the_regulations_v321.eB.c(eB.java:127)
at fuck_the_regulations_v321.eK.a(eK.java:4)
at fuck_the_regulations_v321.eK.<init>(eK.java:15)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
at com.intellij.serviceContainer.ConstructorInjectionKt.instantiateUsingPicoContainer(constructorInjection.kt:48)
at com.intellij.serviceContainer.ComponentManagerImpl.instantiateClassWithConstructorInjection(ComponentManagerImpl.kt:660)
at com.intellij.serviceContainer.MyComponentAdapter.doCreateInstance(MyComponentAdapter.kt:35)
at com.intellij.serviceContainer.BaseComponentAdapter.getInstanceUncached(BaseComponentAdapter.kt:115)
at com.intellij.serviceContainer.BaseComponentAdapter.getInstance(BaseComponentAdapter.kt:69)
at com.intellij.serviceContainer.BaseComponentAdapter.getInstance$default(BaseComponentAdapter.kt:62)
at com.intellij.serviceContainer.ComponentManagerImpl.createComponents(ComponentManagerImpl.kt:261)
at com.intellij.openapi.application.impl.ApplicationImpl.lambda$loadComponents$5(ApplicationImpl.java:334)
at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:166)
at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:627)
at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:572)
at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:61)
at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:153)
at com.intellij.openapi.application.impl.ApplicationImpl.loadComponents(ApplicationImpl.java:334)
at com.intellij.idea.ApplicationLoader$startApp$6$loadComponentInEdtFuture$1.run(ApplicationLoader.kt:184)
at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1736)
at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:201)
at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:831)
at com.intellij.openapi.application.impl.ApplicationImpl.lambda$invokeLater$4(ApplicationImpl.java:310)
at com.intellij.openapi.application.impl.FlushQueue.doRun(FlushQueue.java:80)
at com.intellij.openapi.application.impl.FlushQueue.runNextEvent(FlushQueue.java:128)
at com.intellij.openapi.application.impl.FlushQueue.flushNow(FlushQueue.java:46)
at com.intellij.openapi.application.impl.FlushQueue$FlushNow.run(FlushQueue.java:184)
at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:776)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:727)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85)
at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:746)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:416)
at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
Caused by: java.lang.reflect.InvocationTargetException
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at javassist.util.proxy.DefineClassHelper$JavaOther.defineClass(DefineClassHelper.java:214)
... 92 more
Caused by: java.lang.LinkageError: loader com.intellij.util.lang.UrlClassLoader @754ba872 attempted duplicate class definition for com.intellij.ui.components.ScrollBarPainter$Thumb. (com.intellij.ui.components.ScrollBarPainter$Thumb is in unnamed module of loader com.intellij.util.lang.UrlClassLoader @754ba872, parent loader 'platform')
at java.base/java.lang.ClassLoader.defineClass1(Native Method)
at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1016)
... 97 more

After a general look, I don’t know much about Java. Maybe it’s the problem of environment dependence.
I did some debugging phpstorm.exe.vmoptions The problem has not been solved. It seems that the problem is not caused by memory overflow. After all, I have upgraded memory

-server
-Xms128m
-Xmx512m
-XX:ReservedCodeCacheSize=240m
-XX:+UseConcMarkSweepGC
-XX:SoftRefLRUPolicyMSPerMB=50
-ea
-XX:CICompilerCount=2
-Dsun.io.useCanonPrefixCache=false
-Djdk.http.auth.tunneling.disabledSchemes=""
-XX:+HeapDumpOnOutOfMemoryError
-XX:-OmitStackTraceInFastThrow
-Djdk.attach.allowAttachSelf=true
-Dkotlinx.coroutines.debug=off
-Djdk.module.illegalAccess.silent=true
-javaagent:{path}jetbrains-agent.jar

5. Use the win10 sandbox, and try to upgrade compatibility before reinstallation

So it happens to use the following new windows features

After installation, search for sandbox and open:

What else can I say 🙄 (it’s still a mistake to open VT, reinstall, etc. according to the method on the Internet)

6. Update the latest version of win10 2004

Attack poison with poison. See if the problem is solved in the new version. My 1903 can’t be updated directly with OTA. Maybe it hasn’t started pushing yet

Then go to MSDN,i tell you to download the new version, and open it directly after the iso is loaded setup.exe Just install it automatically

After installing the 2004 version, I don’t think it has changed much, but the PHP store still can’t be opened 🙄 The only difference is that sandbox can be used without error reporting. It’s probably that updating VT that supports intel is not limited to AMD.

There is no problem running Phpstorm64 with sandbox, indicating that it is not caused by version update, but some environment dependencies may be wrong.

I have no idea about troubleshooting the local environment. Everything that can be reinstalled has been reinstalled. There is no way. I can only reset the system and delete all settings and files to solve the problem 🙃.

And I reset the system less than half a year, and have to reinstall a lot of software..

Partners with solutions or similar problems can comment below

Conclusion: life is short, don’t use windows! 🙄

Содержание

  1. PhpStorm не запускается
  2. 9 ответов
  3. Phpstorm не запускается после ошибки дампа памяти
  4. 6 ответов 6
  5. Вылетает программа (phpstorm)
  6. PHPStorm больше не запускается
  7. 2 ответа 2
  8. Не запускается PHPStorm
  9. 2 ответа 2
  10. Всё ещё ищете ответ? Посмотрите другие вопросы с метками phpstorm или задайте свой вопрос.
  11. Похожие
  12. Подписаться на ленту

Я только что загрузил PhpStorm 5 на свой совсем свежий ubuntu. При первом запуске установил пару плагинов. Теперь, после установки этих плагинов, PhpStorm больше не запускается. Экран-заставка не отображается. На терминал не выводится сообщение об ошибке:

Что мне делать с этим пьяным моряком? Я не могу найти ни файлов журналов, ни файла конфигурации / каталога в моем домашнем каталоге.

9 ответов

Некоторые плагины могут вызвать проблемы и помешать запуску IDE, если это произойдет, вам следует удалить каталог, содержащий плагин, вручную. Местоположение этого каталога зависит от системы и продукта, подробности доступны в FAQ.

Для PhpStorm в Linux это будет

Откройте терминал Linux Ubuntu 20.10

Замечания: найдите папку >>> JetBrains YOU@USER:

Если вы используете Windows, мне помогло удаление следующего каталога:

Вуаля! Я могу снова запустить свой PhpStorm2020.2.1!

Вот как это исправить: переименуйте C: Users USERNAME.PhpStorm2016.3 во что-нибудь другое (что угодно, например, PhpStorm2016.whatever), программа запустит программу, если вы щелкните значок phpStorm, затем выберите импорт настроек и тебе хорошо идти;)

Возможно, если установлен openjdk, тогда phpstorm не открывается.

Поэтому сначала удалите, а затем выполните шаги, указанные в ссылке ниже. Решаю проблему так же.

Это случилось и со мной, я создал собственный файл vmoptions и ввел неверные значения. Я исправил это, удалив в

Источник

Phpstorm не запускается после ошибки дампа памяти

Я получил сообщение об ошибке, что при нажатии кода недостаточно памяти, а затем я нажал кнопку «Завершение работы» для этой ошибки, и поскольку всплывающее окно phpstorm не запускается. Двойное нажатие на иконку ничего не дает. Диспетчер задач не показывает запущенный процесс phpstorm.

Я удалил, перезагрузил компьютер и переустановил, все та же проблема. Я понятия не имею, что здесь происходит. Любое другое приложение в моей системе работает как надо.

Я получил ошибку, похожую на эту: NHItb

6 ответов 6

Для меня работало обновление файла phpstorm.exe.vmoptions в C:Users.Справочник PhpStorm2016.3.

Я изменил значение Xmx обратно на 1024. Мои ошибки произошли, когда я сделал это 2048, но когда я изменил его обратно, PHPStorm снова заработал. Это для моей 32-битной копии.

Была некоторая неизвестная проблема с Java в системе, поэтому я скачал Dev Kit отсюда после удаления phpstorm, а затем установил phpstorm, и 64-битная версия работает как надо.

Для меня работало обновление файла phpstorm.exe.vmoptions, расположенного в папке C:Program Files (x86)JetBrainsPhpStorm 10.0.4bin.

Мои ошибки произошли сразу после того, как я изменил значение Xmx с 1024 на 2048. Я не мог заставить программу работать больше, даже после перезагрузки ПК. Затем я изменил значение Xmx обратно на 1024 и перезагрузил компьютер. После этого PHPStorm снова заработал.

для меня удаление каталога

Я использую PhpStorm2017.3 и чтобы он работал, мне пришлось удалить папку .IntelliJIdea2017.3 из следующего местоположения:

В вашем случае вам нужно будет зайти в правильную папку, т. Е. Папка «admin» выше может быть другой папкой в вашем случае, поэтому я настоятельно рекомендую вам проверить ее, иначе вы можете не найти .Папка IntelliJIdea2017.3 в нем.

Источник

Вылетает программа (phpstorm)

Как можно отследить причину?

Стоит последняя версия phpstorm

win 10×64
машина мощная

Помощь в написании контрольных, курсовых и дипломных работ здесь.

Вылетает программа
Почему вылетает программа?

tickВылетает программа
Выкидывает после того как вводишь название файла где лежит список студентов группы, в котором.

Вылетает программа
Я только учусь и похоже проблема в слоте, при обращению к нему вылетает main.cpp#include.

неужели нельзя никак отловить причину?

Долбаный замкнутый круг (

dikucher, проблема решилась отключением некоторых из сервисов + запуском в режиме совместимости с win7.

WIN+R, «msconfig», Службы, Не отображать службы Microsoft, убрал Skype Updater, Teamviewer 10 и Intel Content Protection.

tickПрограмма вылетает
Borland C++3.1 консольное приложение При определенных данных программа вылетает. Что это.

Вылетает программа
Создал простую dll в которой создается checkbox, но при запуске программа сразу завершается, при.

Вылетает программа
Здравствуйте! Сама формулировка задачи: Массив записей содержит информацию о результатах сдачи.

Вылетает программа
Почему-то после запуска вылетает программа. Помогите найти ошибку. Написана в 3 файлах. 1: class.

Вылетает программа
При нажатии кнопки «Select» открывается проводник. В нем нужно выбрать изображение, которое должно.

Вылетает программа
Здравствуйте Написала программу, ошибок и предупреждений во время компиляции не происходит.

Источник

PHPStorm больше не запускается

Я установил phpstorm на Linux-машине ym, и раньше он работал нормально.

Однако, теперь это даже не начинается:

Любая идея, что вызывает это, или как я могу получить больше информации от этого?

2 ответа 2

Исправлено после обращения в службу поддержки, возникла проблема с лицензией.

По сути, он вошел в режим демона и показал окно оповещения под всеми остальными вдовами, поэтому его нельзя было увидеть. Я наткнулся на это, выходя из системы.

На коробке было простое предупреждение о том, что срок действия лицензии истекает через 5 дней. Ничего страшного, так как у меня есть школьная лицензия.

После подтверждения диалогового окна и добавления нового лицензионного ключа он работает как положено.

* Перемещено из нескольких комментариев в один ответ

Спасибо @MightyPork. Для меня на Windows 7, я увидел предупреждение для установки icloud (первый запуск) в фоновом режиме после просмотра вашего ответа. Как только я закрыл предупреждение, я смог запустить phpStorm.

ОБНОВЛЕНИЕ 1:

На этот раз компьютер перезагрузился из BSD (сбой), и не было никаких предупреждений. Я заканчиваю задачу MS OUTLOOK и пробовал, все заработало

ОБНОВЛЕНИЕ 2:

Та же проблема, что и в обновлении 1, но на этот раз это не сработало.

На этот раз это сработало после принудительного завершения задачи «слабого» приложения. теперь мне интересно, это как-то связано с памятью (?)

Поэтому теперь я буду закрывать приложения по одному, пока не смогу загрузить PHPstorm.

После запуска я могу нормально перезапустить другие приложения.

Источник

Не запускается PHPStorm

У меня стоит 6 версия PHPStorm из архива. При попытке запуска выдаёт сообщение (JDK установлен):

No JVM could be found on your system. Please define EXE4J_JAVA_HOME to point to an installed 32-bit JDK or JRE or download a JRE from www.java.com

Что делать дальше, может кто подскажет?

2 ответа 2

Скорее всего у тебя в системе не прописан путь переменным среды для JDK.

Скопируй СВОЙ путь. Затем щелкни правой кнопкой мыши на Мой компьютер-> Свойства-> Дополнительные параметры системы-> Окружающая среда переменных-> Путь (в низу)-> «Изменить-«> Помести точку с запятой (;) в конец текста и вставь путь файла, который ты скопировал ранее СРАЗУ после точку с запятой.

В системных переменных нужно создать новую переменную с именем «JAVA_HOME» и прописать в значении путь к папке с версией jre (без «bin») например «C:Program FilesJavajre1.8.0_181»

Всё ещё ищете ответ? Посмотрите другие вопросы с метками phpstorm или задайте свой вопрос.

Похожие

Подписаться на ленту

Для подписки на ленту скопируйте и вставьте эту ссылку в вашу программу для чтения RSS.

дизайн сайта / логотип © 2022 Stack Exchange Inc; материалы пользователей предоставляются на условиях лицензии cc by-sa. rev 2022.11.1.40614

Нажимая «Принять все файлы cookie» вы соглашаетесь, что Stack Exchange может хранить файлы cookie на вашем устройстве и раскрывать информацию в соответствии с нашей Политикой в отношении файлов cookie.

Источник

Во-первых, проблема

При запуске PhPStorm я вдруг столкнулся с проблемой, которую не удалось запустить PhPStorm. Советы: не удалось загрузить JVM DLL, как показано на рисунке:

Во-вторых, запрос онлайн-решения

1. Изменение phpstorm 7.1.3 bin phpstorm.exe.vmoptions файл, измененный следующим образом:

-server -Xms128m -Xmx512m -XX:MaxPermSize=250m -XX:ReservedCodeCacheSize=64m -ea -Dsun.io.useCanonCaches=false -Djava.net.preferIPv4Stack=true -XX:+UseCodeCacheFlushing -XX:+UseConcMarkSweepGC -XX:SoftRefLRUPolicyMSPerMB=50 

После пересмотра нет никаких изменений, до сих пор не могут быть открыты;

2. Проверьте, установлен ли Microsoft Visual C ++ 2010 Redistributable Package Package

A. Скачать vcredist_x86.exe, скачать адрес:

      32 bit: http://www.microsoft.com/download/en/details.aspx?id=5555

      64 bit: http://www.microsoft.com/download/en/details.aspx?id=14632

B. Загрузка Загрузки, запустите, запрос уже установлен, как показано:

    ->

В-третьих, решение

1. Обнаружить, уже установлен Java JDK, просмотр C: Program Files (x86) Java , или просмотреть java_home

2. Если установки нет, установите Java JDK, загрузите адрес:https://www.oracle.com/technetwork/java/javase/downloads/index.html

3. После запуска настройте среду Java, щелкните правой кнопкой мыши на компьютере -> Свойства -> Расширенные настройки системы -> Дополнительные настройки -> Переменная среды -> Переменная среды Java_Home Введите адрес Java JDK в вариабельном значении, как показано ниже:

  

4. Проверьте, правильная ли настройка, откройте CMD, запустите среду Java, введите Java -version

  

В-четвертых, запустите PhPStorm, запустите успех!

  • Ошибка при запуске photoshop msvcp140 dll
  • Ошибка при запуске painkiller
  • Ошибка при запуске minecraft opengl
  • Ошибка при запуске phasmophobia launch the game with admins rights
  • Ошибка при запуске overwatch