Fatal error: Class Helper_Data' not found in appMage.php












2















Please help me guys to fix it :




Fatal error: Class 'Mage_Parcelamento_Helper_Data' not found in
C:wamp64wwwmagentoappMage.php on line 547




Error log




Warning: include(MageParcelamentoHelperData.php): failed to open
stream: No such file or directory in libVarienAutoload.php on line
94











share|improve this question





























    2















    Please help me guys to fix it :




    Fatal error: Class 'Mage_Parcelamento_Helper_Data' not found in
    C:wamp64wwwmagentoappMage.php on line 547




    Error log




    Warning: include(MageParcelamentoHelperData.php): failed to open
    stream: No such file or directory in libVarienAutoload.php on line
    94











    share|improve this question



























      2












      2








      2








      Please help me guys to fix it :




      Fatal error: Class 'Mage_Parcelamento_Helper_Data' not found in
      C:wamp64wwwmagentoappMage.php on line 547




      Error log




      Warning: include(MageParcelamentoHelperData.php): failed to open
      stream: No such file or directory in libVarienAutoload.php on line
      94











      share|improve this question
















      Please help me guys to fix it :




      Fatal error: Class 'Mage_Parcelamento_Helper_Data' not found in
      C:wamp64wwwmagentoappMage.php on line 547




      Error log




      Warning: include(MageParcelamentoHelperData.php): failed to open
      stream: No such file or directory in libVarienAutoload.php on line
      94








      error class not-found






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 26 '17 at 3:54









      PЯINCƏ

      8,38131145




      8,38131145










      asked Jun 25 '17 at 5:31









      Guilherme PereiraGuilherme Pereira

      2112




      2112






















          3 Answers
          3






          active

          oldest

          votes


















          2














          There are two possibilities:



          1) Either you declared your helper in the config.xml and you did not create it in the module NameSpace/NameModule/Helper/Data.php



          2) Either you created it in the module but not in the config.xml or you did it wrong.



          Solution:



          You should have this in your config.xml:



          <global>
          ...
          <helpers>
          <parcelamento>
          <class>Namespace_Parcelamento_Helper</class>
          </parcelamento>
          </helpers>
          ...
          </global>


          You should also have this in :Namespace/Parcelamento/Helper/Data.php



          <?php

          class Namespace_Parcelamento_Helper_Data extends Mage_Core_Helper_Abstract
          {

          }


          Now you can call your helper like this:



          <?php Mage::helper('parcelamento')?>





          share|improve this answer































            0














            Check in your code you will find code as below



            Mage::helper('parcelamento')


            Check in your module config file have helper name like bwlow.



            <helpers>
            <module>
            <class>Namespace_Module_Helper</class>
            </module>
            </helpers>


            replace Parcelamento with your helper name






            share|improve this answer
























            • Thank you everyone, It's right now ?

              – Guilherme Pereira
              Jun 27 '17 at 1:45



















            0














            To get the website and admin panel live again, I disabled the compilation via SFTP.



            You can do that by editing the root/includes/config.php file.



            To disable compilation in Magento, edit includes/config.php, comment out the first line (line 28) and uncomment out the second line (line 29).



            Your final code should look like this (without brackets):



            #define('COMPILER_INCLUDE_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'src');  
            #define('COMPILER_COLLECT_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'stat');


            Hope this helps.






            share|improve this answer

























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "479"
              };
              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: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              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%2fmagento.stackexchange.com%2fquestions%2f180621%2ffatal-error-class-helper-data-not-found-in-app-mage-php%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              There are two possibilities:



              1) Either you declared your helper in the config.xml and you did not create it in the module NameSpace/NameModule/Helper/Data.php



              2) Either you created it in the module but not in the config.xml or you did it wrong.



              Solution:



              You should have this in your config.xml:



              <global>
              ...
              <helpers>
              <parcelamento>
              <class>Namespace_Parcelamento_Helper</class>
              </parcelamento>
              </helpers>
              ...
              </global>


              You should also have this in :Namespace/Parcelamento/Helper/Data.php



              <?php

              class Namespace_Parcelamento_Helper_Data extends Mage_Core_Helper_Abstract
              {

              }


              Now you can call your helper like this:



              <?php Mage::helper('parcelamento')?>





              share|improve this answer




























                2














                There are two possibilities:



                1) Either you declared your helper in the config.xml and you did not create it in the module NameSpace/NameModule/Helper/Data.php



                2) Either you created it in the module but not in the config.xml or you did it wrong.



                Solution:



                You should have this in your config.xml:



                <global>
                ...
                <helpers>
                <parcelamento>
                <class>Namespace_Parcelamento_Helper</class>
                </parcelamento>
                </helpers>
                ...
                </global>


                You should also have this in :Namespace/Parcelamento/Helper/Data.php



                <?php

                class Namespace_Parcelamento_Helper_Data extends Mage_Core_Helper_Abstract
                {

                }


                Now you can call your helper like this:



                <?php Mage::helper('parcelamento')?>





                share|improve this answer


























                  2












                  2








                  2







                  There are two possibilities:



                  1) Either you declared your helper in the config.xml and you did not create it in the module NameSpace/NameModule/Helper/Data.php



                  2) Either you created it in the module but not in the config.xml or you did it wrong.



                  Solution:



                  You should have this in your config.xml:



                  <global>
                  ...
                  <helpers>
                  <parcelamento>
                  <class>Namespace_Parcelamento_Helper</class>
                  </parcelamento>
                  </helpers>
                  ...
                  </global>


                  You should also have this in :Namespace/Parcelamento/Helper/Data.php



                  <?php

                  class Namespace_Parcelamento_Helper_Data extends Mage_Core_Helper_Abstract
                  {

                  }


                  Now you can call your helper like this:



                  <?php Mage::helper('parcelamento')?>





                  share|improve this answer













                  There are two possibilities:



                  1) Either you declared your helper in the config.xml and you did not create it in the module NameSpace/NameModule/Helper/Data.php



                  2) Either you created it in the module but not in the config.xml or you did it wrong.



                  Solution:



                  You should have this in your config.xml:



                  <global>
                  ...
                  <helpers>
                  <parcelamento>
                  <class>Namespace_Parcelamento_Helper</class>
                  </parcelamento>
                  </helpers>
                  ...
                  </global>


                  You should also have this in :Namespace/Parcelamento/Helper/Data.php



                  <?php

                  class Namespace_Parcelamento_Helper_Data extends Mage_Core_Helper_Abstract
                  {

                  }


                  Now you can call your helper like this:



                  <?php Mage::helper('parcelamento')?>






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jun 26 '17 at 0:33









                  PЯINCƏPЯINCƏ

                  8,38131145




                  8,38131145

























                      0














                      Check in your code you will find code as below



                      Mage::helper('parcelamento')


                      Check in your module config file have helper name like bwlow.



                      <helpers>
                      <module>
                      <class>Namespace_Module_Helper</class>
                      </module>
                      </helpers>


                      replace Parcelamento with your helper name






                      share|improve this answer
























                      • Thank you everyone, It's right now ?

                        – Guilherme Pereira
                        Jun 27 '17 at 1:45
















                      0














                      Check in your code you will find code as below



                      Mage::helper('parcelamento')


                      Check in your module config file have helper name like bwlow.



                      <helpers>
                      <module>
                      <class>Namespace_Module_Helper</class>
                      </module>
                      </helpers>


                      replace Parcelamento with your helper name






                      share|improve this answer
























                      • Thank you everyone, It's right now ?

                        – Guilherme Pereira
                        Jun 27 '17 at 1:45














                      0












                      0








                      0







                      Check in your code you will find code as below



                      Mage::helper('parcelamento')


                      Check in your module config file have helper name like bwlow.



                      <helpers>
                      <module>
                      <class>Namespace_Module_Helper</class>
                      </module>
                      </helpers>


                      replace Parcelamento with your helper name






                      share|improve this answer













                      Check in your code you will find code as below



                      Mage::helper('parcelamento')


                      Check in your module config file have helper name like bwlow.



                      <helpers>
                      <module>
                      <class>Namespace_Module_Helper</class>
                      </module>
                      </helpers>


                      replace Parcelamento with your helper name







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Jun 25 '17 at 5:37









                      Prashant ValandaPrashant Valanda

                      9,85212355




                      9,85212355













                      • Thank you everyone, It's right now ?

                        – Guilherme Pereira
                        Jun 27 '17 at 1:45



















                      • Thank you everyone, It's right now ?

                        – Guilherme Pereira
                        Jun 27 '17 at 1:45

















                      Thank you everyone, It's right now ?

                      – Guilherme Pereira
                      Jun 27 '17 at 1:45





                      Thank you everyone, It's right now ?

                      – Guilherme Pereira
                      Jun 27 '17 at 1:45











                      0














                      To get the website and admin panel live again, I disabled the compilation via SFTP.



                      You can do that by editing the root/includes/config.php file.



                      To disable compilation in Magento, edit includes/config.php, comment out the first line (line 28) and uncomment out the second line (line 29).



                      Your final code should look like this (without brackets):



                      #define('COMPILER_INCLUDE_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'src');  
                      #define('COMPILER_COLLECT_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'stat');


                      Hope this helps.






                      share|improve this answer






























                        0














                        To get the website and admin panel live again, I disabled the compilation via SFTP.



                        You can do that by editing the root/includes/config.php file.



                        To disable compilation in Magento, edit includes/config.php, comment out the first line (line 28) and uncomment out the second line (line 29).



                        Your final code should look like this (without brackets):



                        #define('COMPILER_INCLUDE_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'src');  
                        #define('COMPILER_COLLECT_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'stat');


                        Hope this helps.






                        share|improve this answer




























                          0












                          0








                          0







                          To get the website and admin panel live again, I disabled the compilation via SFTP.



                          You can do that by editing the root/includes/config.php file.



                          To disable compilation in Magento, edit includes/config.php, comment out the first line (line 28) and uncomment out the second line (line 29).



                          Your final code should look like this (without brackets):



                          #define('COMPILER_INCLUDE_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'src');  
                          #define('COMPILER_COLLECT_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'stat');


                          Hope this helps.






                          share|improve this answer















                          To get the website and admin panel live again, I disabled the compilation via SFTP.



                          You can do that by editing the root/includes/config.php file.



                          To disable compilation in Magento, edit includes/config.php, comment out the first line (line 28) and uncomment out the second line (line 29).



                          Your final code should look like this (without brackets):



                          #define('COMPILER_INCLUDE_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'src');  
                          #define('COMPILER_COLLECT_PATH', dirname(FILE).DIRECTORY_SEPARATOR.'stat');


                          Hope this helps.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited 12 mins ago









                          magefms

                          2,0722426




                          2,0722426










                          answered Nov 24 '18 at 8:14









                          Abhishek KumarAbhishek Kumar

                          1




                          1






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Magento Stack Exchange!


                              • 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%2fmagento.stackexchange.com%2fquestions%2f180621%2ffatal-error-class-helper-data-not-found-in-app-mage-php%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

                              What other Star Trek series did the main TNG cast show up in?

                              Berlina muro

                              Berlina aerponto