Fatal error: Class Helper_Data' not found in appMage.php
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
add a comment |
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
add a comment |
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
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
error class not-found
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
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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')?>
add a comment |
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
Thank you everyone, It's right now ?
– Guilherme Pereira
Jun 27 '17 at 1:45
add a comment |
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.
add a comment |
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
});
}
});
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%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
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')?>
add a comment |
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')?>
add a comment |
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')?>
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')?>
answered Jun 26 '17 at 0:33
PЯINCƏPЯINCƏ
8,38131145
8,38131145
add a comment |
add a comment |
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
Thank you everyone, It's right now ?
– Guilherme Pereira
Jun 27 '17 at 1:45
add a comment |
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
Thank you everyone, It's right now ?
– Guilherme Pereira
Jun 27 '17 at 1:45
add a comment |
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
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
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
add a comment |
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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited 12 mins ago
magefms
2,0722426
2,0722426
answered Nov 24 '18 at 8:14
Abhishek KumarAbhishek Kumar
1
1
add a comment |
add a comment |
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.
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%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
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