I have purchased a theme from themeforest and I downloaded the zip file. Then I extracted it according to the documentation along with the zip file. Then I added "app, js, media, skin to the correspondent folders".
Compilation mode is disabled (default). Then I went to admin panel and cleared cache, but when I opened my frontend it shows me an error saying:
Fatal error: Class 'Mage_Jollyanytheme_Helper_Data' not found in C:\wamp\www\magento\app\Mage.php on line 547
I have googled it and referred several questions such as:
Magento Helper Class Not Found Error
Magento : Fatal error: Class 'Mage_Giftcards_Helper_Data' not found in ...../app/Mage.php on line 546
But I could not reveal any useful information from those questions.
How can I sort this out?
Check that in your app/code/local/Jollyanytheme/Helper/Data.php is exists with following code
class Mage_Jollyanytheme_Helper_Data extends Mage_Core_Helper_Abstract
{
}
If not then add it.
I have solved it, I needed to add two file directories that were in different folders. Means in first step I need to install app,js,media,skin etc, and in second step I need to install etc modules also. Thanks guys.
Related
When I add mailup in magento, I receive the following error message on the dashboard :
Class 'MailUp_MailUpSync_Helper_Data' not found
Have you looked in app/code/local/MailUp/MailUpSync/Helper/ or app/code/community/MailUp/MailUpSync/Helper/ and see if the Data.php class file is there?
The extension needs that class and seems to be the reported error.
If it's not there, go through the extension and place all the files in their correct folders again.
I am new to Magento Framework. I've just downloaded theme and followed all the steps to install it in Magento. But its showing me the below error when I tried to load my home page.
Fatal error: Class 'Mage_Ves_Tempcp_Helper_Framework' not found in C:\wamp\www\dummysite\app\Mage.php on line 547
Need Help.
Thanks
There is some problem with theme and it is missing the helper file. Make sure the file exists in
app/code/community/Ves/Tempcp/Helper/Framework.php
or
app/code/local/Ves/Tempcp/Helper/Framework.php
Also reupload all your theme files to make sure none of them are missing.
Hope it helps
I am using Magento Community V1.9. After I installed one extension 'Newsletter Subscription with Discount Coupon', when I tried to enter the backend.
I found a error:
Fatal error: Class 'Nik_Newsletterpopup_Helper_Data' not found in
Mage.php on line 547.
The frontend and other moduel in backend work correctly. Only System->Configuration has such error.
I checked the similar problems and answers in StackOverFlow. But the problem is still here.
Data.php is in the right path (/app/code/local/Nik/Newsletterpopup/Helper), and the class is declared in config.xml also.
Could anyone can help me on that? Thank you very much!
Here is the code in Config.xml:
<helpers>
<newsletterpopup>
<class>Nik_Newsletterpopup_Helper</class>
</newsletterpopup>
</helpers>
Check that the Nik > Newsletterpopup module is enabled under Configuration > Advanced > Advanced. If it's not listed there, you may be missing the xml file to register the module in /app/etc/modules/
Check the class name inside the /app/code/local/Nik/Newsletterpopup/Helper/Data.php file to make sure that it is Nik_Newsletterpopup_Helper_Data
in include src folder all the files are placed when compilation is set to true.
If you installed module later or for some reason files of module in question are not in include/src folder then Magento will assume this file as not found and throw error.
So do check include/src folder for this specific file.
I need help I cant find any information about this error. even in Prestashop forum
I copied my live site and transfer it to my local server..
Configurations are now OK but when I click on any product at the front-end.
I received the below error
Fatal error: Class 'ObjectModel' not found in F:\xampp2\htdocs\checkedentertainment\product.php on line 32
When I checked the product on the backend the product is still in the products and all are their smoothly.
Any ideas?
What the error says is that the class ObjectModel is missing. It couldn't be loaded. Many of the core classes in PrestaShop inherits from the ObjectModel so it is cruicial that it exists.
Please check your classes folder and make sure all your classes are there. There should be an ObjectModel.php file in the classes directory, if not, make sure to put it there!
I get the following error when i am logged into the backend in magento
Fatal error: Interface 'Zend_Http_Client_Adapter_Interface' not found in /homepages/45/d210005774/htdocs/websitename/lib/Varien/Http/Adapter/Curl.php on line 176
Also i got this error previously in my index management section in magento
Fatal error: Call to undefined method Zend_Locale_Data::disableCache() in
/homepages/45/d210005774/htdocs/websitename/lib/Zend/Locale/Format.php
on line 153
Could anyone help me out with this? I think the problem is to do with zend framework but i am not sure whats causing this
It looks like there's something wrong with your installation. Either you're missing files from Magento's lib folder, you have damaged files in Magento's lib folder, or (longshot) your PHP include path is pointing in a different location.
First thing I'd do is download a fresh install of your version of Magento, unzip it in a separate folder, and then run
diff -r /homepages/45/d210005774/htdocs/websitename/ /path/to/fresh/magento
This will give you a list of differences between the standard core files and your own.
If you want to diagnose specific files, check
lib/Zend/Http/Client/Adapter/Interface.php
for the missing interface
interface Zend_Http_Client_Adapter_Interface
{
...
}
And check
lib/Zend/Locale
for the missing method
public static function disableCache($flag)
{
self::$_cacheDisabled = (boolean) $flag;
}
Finally, check you PHP include path to ensure there isn't an older copy of Magento and/or Zend being included.
Upload Zend folder again.it works for me.