Phpstorm not starting after memory dump error
I got an error message that not enough memory while pushing code and then I pressed the "Shutdown" button on that error and since that popup phpstorm does not start. Double clicking on the icon does nothing. Task Manager shows no phpstorm process running.
I uninstalled, restarted the pc and reinstalled, still the same problem. I have no idea what is going on here. Every other application on my system is working as it should.
I got an error similar to this:
phpstorm
add a comment |
I got an error message that not enough memory while pushing code and then I pressed the "Shutdown" button on that error and since that popup phpstorm does not start. Double clicking on the icon does nothing. Task Manager shows no phpstorm process running.
I uninstalled, restarted the pc and reinstalled, still the same problem. I have no idea what is going on here. Every other application on my system is working as it should.
I got an error similar to this:
phpstorm
add a comment |
I got an error message that not enough memory while pushing code and then I pressed the "Shutdown" button on that error and since that popup phpstorm does not start. Double clicking on the icon does nothing. Task Manager shows no phpstorm process running.
I uninstalled, restarted the pc and reinstalled, still the same problem. I have no idea what is going on here. Every other application on my system is working as it should.
I got an error similar to this:
phpstorm
I got an error message that not enough memory while pushing code and then I pressed the "Shutdown" button on that error and since that popup phpstorm does not start. Double clicking on the icon does nothing. Task Manager shows no phpstorm process running.
I uninstalled, restarted the pc and reinstalled, still the same problem. I have no idea what is going on here. Every other application on my system is working as it should.
I got an error similar to this:
phpstorm
phpstorm
edited Jun 15 '16 at 15:56
asked Jun 15 '16 at 15:47
NegativeSpark
251312
251312
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
Most probably the issue is that JVM can't allocate the requested heap on start. Oracle JVM requires a single chunk of continuous memory (more or less equal to the sum of Xmx and XX:MaxPermSize parameters values) to initialize. On Windows systems 32-bit java can only allocate up to 2 Gb. And any libraries that inject themselves into process memory will reduce this solid block. So it seems that Xmx value you have set is just too much for 32-bit JVM. Please try reducing it to 1024m or 750m, for example - does it work? You need changing PhpStorm.exe.vmoptions file accordingly
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file in the C:Users.PhpStorm2016.3 directory.
I changed the Xmx value back to 1024. My errors occurred when I made it 2048 but when I changed it back, PHPStorm worked again. This is for my 32-bit copy.
add a comment |
There was some unknown issue with Java on the system so I downloaded the Dev Kit from here after uninstalling phpstorm, and then installed phpstorm and the 64-bit version works as it should.
For me, simply uninstalling Java and installing the latest version fixed it. This was for my 32-bit version.
– Eric G
Oct 20 '16 at 21:09
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file, located in the C:Program Files (x86)JetBrainsPhpStorm 10.0.4bin folder.
My errors occurred just after I changed the Xmx value from 1024 to 2048. I couldn't make the program run anymore, even after restarting the PC.
Then I changed the Xmx value back to 1024 and restarted the PC. After that, PHPStorm worked again.
add a comment |
for me deleting the directory
C:Users.PhpStorm2016.3
Worked.
add a comment |
I am using PhpStorm2017.3 and to make it work, I had to delete the folder .IntelliJIdea2017.3 from the following location:
C:Usersadmin.IntelliJIdea2017.3
For your case, you will have to dig in to the correct folder i.e. the folder "admin" above could be a different folder in your case, so I highly recommend you check it or you may not find the .IntelliJIdea2017.3 folder in it.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1089659%2fphpstorm-not-starting-after-memory-dump-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
Most probably the issue is that JVM can't allocate the requested heap on start. Oracle JVM requires a single chunk of continuous memory (more or less equal to the sum of Xmx and XX:MaxPermSize parameters values) to initialize. On Windows systems 32-bit java can only allocate up to 2 Gb. And any libraries that inject themselves into process memory will reduce this solid block. So it seems that Xmx value you have set is just too much for 32-bit JVM. Please try reducing it to 1024m or 750m, for example - does it work? You need changing PhpStorm.exe.vmoptions file accordingly
add a comment |
Most probably the issue is that JVM can't allocate the requested heap on start. Oracle JVM requires a single chunk of continuous memory (more or less equal to the sum of Xmx and XX:MaxPermSize parameters values) to initialize. On Windows systems 32-bit java can only allocate up to 2 Gb. And any libraries that inject themselves into process memory will reduce this solid block. So it seems that Xmx value you have set is just too much for 32-bit JVM. Please try reducing it to 1024m or 750m, for example - does it work? You need changing PhpStorm.exe.vmoptions file accordingly
add a comment |
Most probably the issue is that JVM can't allocate the requested heap on start. Oracle JVM requires a single chunk of continuous memory (more or less equal to the sum of Xmx and XX:MaxPermSize parameters values) to initialize. On Windows systems 32-bit java can only allocate up to 2 Gb. And any libraries that inject themselves into process memory will reduce this solid block. So it seems that Xmx value you have set is just too much for 32-bit JVM. Please try reducing it to 1024m or 750m, for example - does it work? You need changing PhpStorm.exe.vmoptions file accordingly
Most probably the issue is that JVM can't allocate the requested heap on start. Oracle JVM requires a single chunk of continuous memory (more or less equal to the sum of Xmx and XX:MaxPermSize parameters values) to initialize. On Windows systems 32-bit java can only allocate up to 2 Gb. And any libraries that inject themselves into process memory will reduce this solid block. So it seems that Xmx value you have set is just too much for 32-bit JVM. Please try reducing it to 1024m or 750m, for example - does it work? You need changing PhpStorm.exe.vmoptions file accordingly
answered Jun 15 '16 at 16:11
lena
73135
73135
add a comment |
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file in the C:Users.PhpStorm2016.3 directory.
I changed the Xmx value back to 1024. My errors occurred when I made it 2048 but when I changed it back, PHPStorm worked again. This is for my 32-bit copy.
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file in the C:Users.PhpStorm2016.3 directory.
I changed the Xmx value back to 1024. My errors occurred when I made it 2048 but when I changed it back, PHPStorm worked again. This is for my 32-bit copy.
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file in the C:Users.PhpStorm2016.3 directory.
I changed the Xmx value back to 1024. My errors occurred when I made it 2048 but when I changed it back, PHPStorm worked again. This is for my 32-bit copy.
What worked for me was updating the phpstorm.exe.vmoptions file in the C:Users.PhpStorm2016.3 directory.
I changed the Xmx value back to 1024. My errors occurred when I made it 2048 but when I changed it back, PHPStorm worked again. This is for my 32-bit copy.
answered Jan 3 '17 at 7:54
Paolo
412
412
add a comment |
add a comment |
There was some unknown issue with Java on the system so I downloaded the Dev Kit from here after uninstalling phpstorm, and then installed phpstorm and the 64-bit version works as it should.
For me, simply uninstalling Java and installing the latest version fixed it. This was for my 32-bit version.
– Eric G
Oct 20 '16 at 21:09
add a comment |
There was some unknown issue with Java on the system so I downloaded the Dev Kit from here after uninstalling phpstorm, and then installed phpstorm and the 64-bit version works as it should.
For me, simply uninstalling Java and installing the latest version fixed it. This was for my 32-bit version.
– Eric G
Oct 20 '16 at 21:09
add a comment |
There was some unknown issue with Java on the system so I downloaded the Dev Kit from here after uninstalling phpstorm, and then installed phpstorm and the 64-bit version works as it should.
There was some unknown issue with Java on the system so I downloaded the Dev Kit from here after uninstalling phpstorm, and then installed phpstorm and the 64-bit version works as it should.
answered Jun 15 '16 at 16:15
NegativeSpark
251312
251312
For me, simply uninstalling Java and installing the latest version fixed it. This was for my 32-bit version.
– Eric G
Oct 20 '16 at 21:09
add a comment |
For me, simply uninstalling Java and installing the latest version fixed it. This was for my 32-bit version.
– Eric G
Oct 20 '16 at 21:09
For me, simply uninstalling Java and installing the latest version fixed it. This was for my 32-bit version.
– Eric G
Oct 20 '16 at 21:09
For me, simply uninstalling Java and installing the latest version fixed it. This was for my 32-bit version.
– Eric G
Oct 20 '16 at 21:09
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file, located in the C:Program Files (x86)JetBrainsPhpStorm 10.0.4bin folder.
My errors occurred just after I changed the Xmx value from 1024 to 2048. I couldn't make the program run anymore, even after restarting the PC.
Then I changed the Xmx value back to 1024 and restarted the PC. After that, PHPStorm worked again.
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file, located in the C:Program Files (x86)JetBrainsPhpStorm 10.0.4bin folder.
My errors occurred just after I changed the Xmx value from 1024 to 2048. I couldn't make the program run anymore, even after restarting the PC.
Then I changed the Xmx value back to 1024 and restarted the PC. After that, PHPStorm worked again.
add a comment |
What worked for me was updating the phpstorm.exe.vmoptions file, located in the C:Program Files (x86)JetBrainsPhpStorm 10.0.4bin folder.
My errors occurred just after I changed the Xmx value from 1024 to 2048. I couldn't make the program run anymore, even after restarting the PC.
Then I changed the Xmx value back to 1024 and restarted the PC. After that, PHPStorm worked again.
What worked for me was updating the phpstorm.exe.vmoptions file, located in the C:Program Files (x86)JetBrainsPhpStorm 10.0.4bin folder.
My errors occurred just after I changed the Xmx value from 1024 to 2048. I couldn't make the program run anymore, even after restarting the PC.
Then I changed the Xmx value back to 1024 and restarted the PC. After that, PHPStorm worked again.
answered Apr 20 '17 at 13:58
user4672756
111
111
add a comment |
add a comment |
for me deleting the directory
C:Users.PhpStorm2016.3
Worked.
add a comment |
for me deleting the directory
C:Users.PhpStorm2016.3
Worked.
add a comment |
for me deleting the directory
C:Users.PhpStorm2016.3
Worked.
for me deleting the directory
C:Users.PhpStorm2016.3
Worked.
answered Jan 20 '17 at 19:28
Jagadesha NH
1011
1011
add a comment |
add a comment |
I am using PhpStorm2017.3 and to make it work, I had to delete the folder .IntelliJIdea2017.3 from the following location:
C:Usersadmin.IntelliJIdea2017.3
For your case, you will have to dig in to the correct folder i.e. the folder "admin" above could be a different folder in your case, so I highly recommend you check it or you may not find the .IntelliJIdea2017.3 folder in it.
add a comment |
I am using PhpStorm2017.3 and to make it work, I had to delete the folder .IntelliJIdea2017.3 from the following location:
C:Usersadmin.IntelliJIdea2017.3
For your case, you will have to dig in to the correct folder i.e. the folder "admin" above could be a different folder in your case, so I highly recommend you check it or you may not find the .IntelliJIdea2017.3 folder in it.
add a comment |
I am using PhpStorm2017.3 and to make it work, I had to delete the folder .IntelliJIdea2017.3 from the following location:
C:Usersadmin.IntelliJIdea2017.3
For your case, you will have to dig in to the correct folder i.e. the folder "admin" above could be a different folder in your case, so I highly recommend you check it or you may not find the .IntelliJIdea2017.3 folder in it.
I am using PhpStorm2017.3 and to make it work, I had to delete the folder .IntelliJIdea2017.3 from the following location:
C:Usersadmin.IntelliJIdea2017.3
For your case, you will have to dig in to the correct folder i.e. the folder "admin" above could be a different folder in your case, so I highly recommend you check it or you may not find the .IntelliJIdea2017.3 folder in it.
answered Dec 7 '18 at 8:36
Devner
1011
1011
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1089659%2fphpstorm-not-starting-after-memory-dump-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown