Fatal error: Class 'GT_Speed_Helper_Data' not found Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Magento Fatal error: Class 'Mage_Shoppersettings_Helper_Image' not found inMagento Fatal Error Class 'Zend_Cache' not foundFatal error: Class 'Zend_Log' not found in CheckoutFatal error: Class 'Mage_Groupdeals_Helper_Data' not found in magentoappMage.php on line 547Magento admin panel give Fatal error: Class “Helper_Data” not FoundFatal error: Class 'Mage_Inchoo_Orders_Helper_Data in Magento 1.9?Fatal error: Class 'Fris_Socialbuttons_Helper_Data' not found in D:xampphtdocsmagentoappMage.php on line 547Fatal error: Class 'SoapClient' not foundgetting Fatal error: Class 'IntlDateFormatter' not found in magento 2.1.8Fatal error: Class 'Varien_Db_Dbl_Table' not found

Meaning of "Not holding on that level of emuna/bitachon"

Does using the Inspiration rules for character defects encourage My Guy Syndrome?

Is it OK if I do not take the receipt in Germany?

Raising a bilingual kid. When should we introduce the majority language?

false 'Security alert' from Google - every login generates mails from 'no-reply@accounts.google.com'

How to charge percentage of transaction cost?

Is Bran literally the world's memory?

/bin/ls sorts differently than just ls

What's the difference between using dependency injection with a container and using a service locator?

A German immigrant ancestor has a "Registration Affidavit of Alien Enemy" on file. What does that mean exactly?

Why is one lightbulb in a string illuminated?

How to break 信じようとしていただけかも知れない into separate parts?

When speaking, how do you change your mind mid-sentence?

Is there a way to convert Wolfram Language expression to string?

Putting Ant-Man on house arrest

Why do C and C++ allow the expression (int) + 4*5?

“Since the train was delayed for more than an hour, passengers were given a full refund.” – Why is there no article before “passengers”?

Why does my GNOME settings mention "Moto C Plus"?

What's the connection between Mr. Nancy and fried chicken?

What were wait-states, and why was it only an issue for PCs?

tabularx column has extra padding at right?

Reflections in a Square

Pointing to problems without suggesting solutions

Why did Europeans not widely domesticate foxes?



Fatal error: Class 'GT_Speed_Helper_Data' not found



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Magento Fatal error: Class 'Mage_Shoppersettings_Helper_Image' not found inMagento Fatal Error Class 'Zend_Cache' not foundFatal error: Class 'Zend_Log' not found in CheckoutFatal error: Class 'Mage_Groupdeals_Helper_Data' not found in magentoappMage.php on line 547Magento admin panel give Fatal error: Class “Helper_Data” not FoundFatal error: Class 'Mage_Inchoo_Orders_Helper_Data in Magento 1.9?Fatal error: Class 'Fris_Socialbuttons_Helper_Data' not found in D:xampphtdocsmagentoappMage.php on line 547Fatal error: Class 'SoapClient' not foundgetting Fatal error: Class 'IntlDateFormatter' not found in magento 2.1.8Fatal error: Class 'Varien_Db_Dbl_Table' not found



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am trying to install the GT speed extension in magento 1.9.3. It is working fine on staging server but on live it is giving :




Fatal error: Class 'GT_Speed_Helper_Data' not found in I have checked the class exists in the Data.php.




Please help me what I can do to solve this.










share|improve this question
























  • Please Disable compilation and clear cache and test.

    – Chirag Rajput
    Apr 18 at 13:27

















0















I am trying to install the GT speed extension in magento 1.9.3. It is working fine on staging server but on live it is giving :




Fatal error: Class 'GT_Speed_Helper_Data' not found in I have checked the class exists in the Data.php.




Please help me what I can do to solve this.










share|improve this question
























  • Please Disable compilation and clear cache and test.

    – Chirag Rajput
    Apr 18 at 13:27













0












0








0








I am trying to install the GT speed extension in magento 1.9.3. It is working fine on staging server but on live it is giving :




Fatal error: Class 'GT_Speed_Helper_Data' not found in I have checked the class exists in the Data.php.




Please help me what I can do to solve this.










share|improve this question
















I am trying to install the GT speed extension in magento 1.9.3. It is working fine on staging server but on live it is giving :




Fatal error: Class 'GT_Speed_Helper_Data' not found in I have checked the class exists in the Data.php.




Please help me what I can do to solve this.







magento-1.9 php extensions fatal-error third-party-module






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 18 at 10:51









Rakesh Donga

2,679317




2,679317










asked Apr 18 at 9:32









CharanjeetCharanjeet

226




226












  • Please Disable compilation and clear cache and test.

    – Chirag Rajput
    Apr 18 at 13:27

















  • Please Disable compilation and clear cache and test.

    – Chirag Rajput
    Apr 18 at 13:27
















Please Disable compilation and clear cache and test.

– Chirag Rajput
Apr 18 at 13:27





Please Disable compilation and clear cache and test.

– Chirag Rajput
Apr 18 at 13:27










1 Answer
1






active

oldest

votes


















0














There are two possibilities:



1) Either you declared your helper in the config.xml and you did not create it in the module GT/Speed/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>
<speed>
<class>GT_speed_Helper</class>
</speed>
</helpers>
...
</global>


You should also have this in :GT/Speed/Helper/Data.php



<?php

class GT_Speed_Helper_Data extends Mage_Core_Helper_Abstract





Now you can call your helper like this:



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





share|improve this answer























  • I have checked this both files are correct. But still error is there.

    – Charanjeet
    Apr 18 at 11:19











  • @Charanjeet you check step by step you have small mistake anywhere because this issue generally coming-up

    – Rakesh Donga
    Apr 18 at 11:26











  • I have checked everything you suggested already there.

    – Charanjeet
    Apr 19 at 3:37











  • This same module with same code is working on my staging site error is only on live.

    – Charanjeet
    Apr 19 at 3:39











  • @Charanjeet not possible because it is very you have mistake anywhere

    – Rakesh Donga
    Apr 19 at 6:06











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%2f270617%2ffatal-error-class-gt-speed-helper-data-not-found%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














There are two possibilities:



1) Either you declared your helper in the config.xml and you did not create it in the module GT/Speed/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>
<speed>
<class>GT_speed_Helper</class>
</speed>
</helpers>
...
</global>


You should also have this in :GT/Speed/Helper/Data.php



<?php

class GT_Speed_Helper_Data extends Mage_Core_Helper_Abstract





Now you can call your helper like this:



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





share|improve this answer























  • I have checked this both files are correct. But still error is there.

    – Charanjeet
    Apr 18 at 11:19











  • @Charanjeet you check step by step you have small mistake anywhere because this issue generally coming-up

    – Rakesh Donga
    Apr 18 at 11:26











  • I have checked everything you suggested already there.

    – Charanjeet
    Apr 19 at 3:37











  • This same module with same code is working on my staging site error is only on live.

    – Charanjeet
    Apr 19 at 3:39











  • @Charanjeet not possible because it is very you have mistake anywhere

    – Rakesh Donga
    Apr 19 at 6:06















0














There are two possibilities:



1) Either you declared your helper in the config.xml and you did not create it in the module GT/Speed/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>
<speed>
<class>GT_speed_Helper</class>
</speed>
</helpers>
...
</global>


You should also have this in :GT/Speed/Helper/Data.php



<?php

class GT_Speed_Helper_Data extends Mage_Core_Helper_Abstract





Now you can call your helper like this:



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





share|improve this answer























  • I have checked this both files are correct. But still error is there.

    – Charanjeet
    Apr 18 at 11:19











  • @Charanjeet you check step by step you have small mistake anywhere because this issue generally coming-up

    – Rakesh Donga
    Apr 18 at 11:26











  • I have checked everything you suggested already there.

    – Charanjeet
    Apr 19 at 3:37











  • This same module with same code is working on my staging site error is only on live.

    – Charanjeet
    Apr 19 at 3:39











  • @Charanjeet not possible because it is very you have mistake anywhere

    – Rakesh Donga
    Apr 19 at 6:06













0












0








0







There are two possibilities:



1) Either you declared your helper in the config.xml and you did not create it in the module GT/Speed/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>
<speed>
<class>GT_speed_Helper</class>
</speed>
</helpers>
...
</global>


You should also have this in :GT/Speed/Helper/Data.php



<?php

class GT_Speed_Helper_Data extends Mage_Core_Helper_Abstract





Now you can call your helper like this:



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





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 GT/Speed/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>
<speed>
<class>GT_speed_Helper</class>
</speed>
</helpers>
...
</global>


You should also have this in :GT/Speed/Helper/Data.php



<?php

class GT_Speed_Helper_Data extends Mage_Core_Helper_Abstract





Now you can call your helper like this:



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






share|improve this answer












share|improve this answer



share|improve this answer










answered Apr 18 at 10:18









Rakesh DongaRakesh Donga

2,679317




2,679317












  • I have checked this both files are correct. But still error is there.

    – Charanjeet
    Apr 18 at 11:19











  • @Charanjeet you check step by step you have small mistake anywhere because this issue generally coming-up

    – Rakesh Donga
    Apr 18 at 11:26











  • I have checked everything you suggested already there.

    – Charanjeet
    Apr 19 at 3:37











  • This same module with same code is working on my staging site error is only on live.

    – Charanjeet
    Apr 19 at 3:39











  • @Charanjeet not possible because it is very you have mistake anywhere

    – Rakesh Donga
    Apr 19 at 6:06

















  • I have checked this both files are correct. But still error is there.

    – Charanjeet
    Apr 18 at 11:19











  • @Charanjeet you check step by step you have small mistake anywhere because this issue generally coming-up

    – Rakesh Donga
    Apr 18 at 11:26











  • I have checked everything you suggested already there.

    – Charanjeet
    Apr 19 at 3:37











  • This same module with same code is working on my staging site error is only on live.

    – Charanjeet
    Apr 19 at 3:39











  • @Charanjeet not possible because it is very you have mistake anywhere

    – Rakesh Donga
    Apr 19 at 6:06
















I have checked this both files are correct. But still error is there.

– Charanjeet
Apr 18 at 11:19





I have checked this both files are correct. But still error is there.

– Charanjeet
Apr 18 at 11:19













@Charanjeet you check step by step you have small mistake anywhere because this issue generally coming-up

– Rakesh Donga
Apr 18 at 11:26





@Charanjeet you check step by step you have small mistake anywhere because this issue generally coming-up

– Rakesh Donga
Apr 18 at 11:26













I have checked everything you suggested already there.

– Charanjeet
Apr 19 at 3:37





I have checked everything you suggested already there.

– Charanjeet
Apr 19 at 3:37













This same module with same code is working on my staging site error is only on live.

– Charanjeet
Apr 19 at 3:39





This same module with same code is working on my staging site error is only on live.

– Charanjeet
Apr 19 at 3:39













@Charanjeet not possible because it is very you have mistake anywhere

– Rakesh Donga
Apr 19 at 6:06





@Charanjeet not possible because it is very you have mistake anywhere

– Rakesh Donga
Apr 19 at 6:06

















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%2f270617%2ffatal-error-class-gt-speed-helper-data-not-found%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

Sum ergo cogito? 1 nng

419 nièngy_Soadمي 19bal1.5o_g

Queiggey Chernihivv 9NnOo i Zw X QqKk LpB