Phpstorm not starting after memory dump error












2














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:
enter image description here










share|improve this question





























    2














    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:
    enter image description here










    share|improve this question



























      2












      2








      2







      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:
      enter image description here










      share|improve this question















      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:
      enter image description here







      phpstorm






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 15 '16 at 15:56

























      asked Jun 15 '16 at 15:47









      NegativeSpark

      251312




      251312






















          6 Answers
          6






          active

          oldest

          votes


















          4














          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






          share|improve this answer





























            4














            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.






            share|improve this answer





























              1














              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.






              share|improve this answer





















              • 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



















              1














              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.






              share|improve this answer





























                0














                for me deleting the directory



                C:Users.PhpStorm2016.3 


                Worked.






                share|improve this answer





























                  0














                  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.






                  share|improve this answer





















                    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
                    });


                    }
                    });














                    draft saved

                    draft discarded


















                    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









                    4














                    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






                    share|improve this answer


























                      4














                      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






                      share|improve this answer
























                        4












                        4








                        4






                        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






                        share|improve this answer












                        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







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Jun 15 '16 at 16:11









                        lena

                        73135




                        73135

























                            4














                            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.






                            share|improve this answer


























                              4














                              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.






                              share|improve this answer
























                                4












                                4








                                4






                                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.






                                share|improve this answer












                                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.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Jan 3 '17 at 7:54









                                Paolo

                                412




                                412























                                    1














                                    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.






                                    share|improve this answer





















                                    • 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
















                                    1














                                    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.






                                    share|improve this answer





















                                    • 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














                                    1












                                    1








                                    1






                                    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.






                                    share|improve this answer












                                    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.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    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


















                                    • 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











                                    1














                                    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.






                                    share|improve this answer


























                                      1














                                      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.






                                      share|improve this answer
























                                        1












                                        1








                                        1






                                        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.






                                        share|improve this answer












                                        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.







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered Apr 20 '17 at 13:58









                                        user4672756

                                        111




                                        111























                                            0














                                            for me deleting the directory



                                            C:Users.PhpStorm2016.3 


                                            Worked.






                                            share|improve this answer


























                                              0














                                              for me deleting the directory



                                              C:Users.PhpStorm2016.3 


                                              Worked.






                                              share|improve this answer
























                                                0












                                                0








                                                0






                                                for me deleting the directory



                                                C:Users.PhpStorm2016.3 


                                                Worked.






                                                share|improve this answer












                                                for me deleting the directory



                                                C:Users.PhpStorm2016.3 


                                                Worked.







                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Jan 20 '17 at 19:28









                                                Jagadesha NH

                                                1011




                                                1011























                                                    0














                                                    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.






                                                    share|improve this answer


























                                                      0














                                                      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.






                                                      share|improve this answer
























                                                        0












                                                        0








                                                        0






                                                        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.






                                                        share|improve this answer












                                                        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.







                                                        share|improve this answer












                                                        share|improve this answer



                                                        share|improve this answer










                                                        answered Dec 7 '18 at 8:36









                                                        Devner

                                                        1011




                                                        1011






























                                                            draft saved

                                                            draft discarded




















































                                                            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.




                                                            draft saved


                                                            draft discarded














                                                            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





















































                                                            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







                                                            Popular posts from this blog

                                                            Список кардиналов, возведённых папой римским Каликстом III

                                                            Deduzione

                                                            Mysql.sock missing - “Can't connect to local MySQL server through socket”