Class 'Mage_Googlecheckout_Helper_Data' not found

后端 未结 8 977
臣服心动
臣服心动 2021-02-04 03:00

We\'ve just upgraded from Magento version 1.8.0.0 to 1.8.1.0 and now when we go to the configuration section of our site we receive the message:

Fatal error: Cla         


        
相关标签:
8条回答
  • 2021-02-04 03:00

    Please check the releasenotes:

    1. Close the Admin Panel browser window.
    2. As a user with root privileges, delete all files except config.xml from the following >directory: magento-install-dir/app/code/core/Mage/GoogleCheckout/etc
    3. When you log back in to the Admin Panel, everything works as expected. If you're still encountering errors, see Getting Help With Your Installation or Upgrade.

    -- Magento Community Edition (CE) Release Notes (1.8 and later)

    0 讨论(0)
  • 2021-02-04 03:09
    • Delete all files except config.xml from /app/code/core/Mage/GoogleCheckout/etc.

    • Clear the cache.

    0 讨论(0)
  • 2021-02-04 03:10

    Every of the answer so far seem dirty to me. Instead of crippeling the Mage_GoogleCheckout Module you should just deactivate it.

    Following steps will result in deactivating the module and leaving the code intact:

    1. go to app/etc/modules
    2. edit Mage_All.xml
    3. search for <Mage_GoogleCheckout>
    4. place <!-- in front of <Mage_GoogleCheckout> and --> right after </Mage_GoogleCheckout>
    5. save the file
    6. if the problem still persists refresh cache (go back in your browser until you see the adminhtml again, go to system -> cache-management and click the two red buttons in the top right corner)
    0 讨论(0)
  • 2021-02-04 03:15

    I agree the solution above works. However, I got this error myself after upgrading from Magento 1.7 to 1.8 simply by copying all the new files over the old Magento 1.7 filesystem. I fixed this (and perhaps other bugs waiting) by removing all contents of the app/code/core folder and copying all files from the fresh Magento 1.8 folder app/code/core/* (Mage and Zend) to the now empty folder. Same thing, different approach.

    0 讨论(0)
  • 2021-02-04 03:18

    Go to the folder app/etc/modules/Mage_All.xml

    Set false for module.

       <Mage_GoogleCheckout>
            <active>false</active>
            <codePool>core</codePool>
            <depends>
                <Mage_Sales/>
                <Mage_Payment/>
                <Mage_Usa/>
            </depends>
        </Mage_GoogleCheckout>
    
    0 讨论(0)
  • 2021-02-04 03:24

    If you get this error it means you are on the right track.

    Solution:

    Close the Admin Panel browser window. As a user with root privileges, delete all files except config.xml from the following directory: magento-install-dir/app/code/core/Mage/GoogleCheckout/etc When you log back in to the Admin Panel, everything works as expected. If you're still encountering errors, see Getting Help With Your Installation or Upgrade.

    The error you get was predicted and documented by the Magento core team. The solution I gave is from the Magento 1.8.1.0 release notes page

    0 讨论(0)
提交回复
热议问题