Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3810554
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T15:28:43+00:00 2026-05-19T15:28:43+00:00

In Magento Enterprise 1.8 I am getting a particular error over and over again

  • 0

In Magento Enterprise 1.8 I am getting a particular error over and over again and I was wondering if someone else has had this problem and what they did to solve it.

The error is:

Invalid block type: Mage_CatalogInventory_Block_Qtyincrements

I am also seeing a lot of there:

Invalid block type: Mage_Navadmin_Block_Navadmin

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T15:28:43+00:00Added an answer on May 19, 2026 at 3:28 pm

    When you attempt to instantiate a block object, if Magento can’t find the class it will log the error, not render the block, and move along.

    This happens in a few places throughout the code base, but the most likely place is in

    File: app/code/core/Mage/Core/Model/Layout.php
    protected function _getBlockInstance($block, array $attributes=array())
    {
        if (is_string($block)) {
            if (strpos($block, '/')!==false) {
                if (!$block = Mage::getConfig()->getBlockClassName($block)) {
                    Mage::throwException(Mage::helper('core')->__('Invalid block type: %s', $block));
                }
            }
            if (class_exists($block, false) || mageFindClassFile($block)) {
                $block = new $block($attributes);
            }
        }
        if (!$block instanceof Mage_Core_Block_Abstract) {
            Mage::throwException(Mage::helper('core')->__('Invalid block type: %s', $block));
        }
        return $block;
    }
    //...
    public function getBlockSingleton($type)
    {
        if (!isset($this->_helpers[$type])) {
            $className = Mage::getConfig()->getBlockClassName($type);
            if (!$className) {
                Mage::throwException(Mage::helper('core')->__('Invalid block type: %s', $type));
            }
    
            $helper = new $className();
            if ($helper) {
                if ($helper instanceof Mage_Core_Block_Abstract) {
                    $helper->setLayout($this);
                }
                $this->_helpers[$type] = $helper;
            }
        }
        return $this->_helpers[$type];
    }
    

    So, your two specific errors. Magento can’t instantiate a

    Mage_CatalogInventory_Block_Qtyincrements
    

    That’s probably because in the layout that ships with 1.8 the core code tried to use a block that would instantiate a

    <block type="cataloginventory/qtyincrements" name="product.info.extrahint" as="extrahint" template="cataloginventory/qtyincrements.phtml"/>
    

    This is a 1.8 bug. I’d contact Magento Enterprise support for a patch. As mentioned by @clockworkgeek it looks like the community edition suffered a similar problem. The patch in that thread is worth looking at for a fix, but I’d be wary of applying a patch meant for Enterprise Edition to Community Edition.

    In your second error, Magento can’t instantiate a

    Mage_Navadmin_Block_Navadmin
    

    There is no Navadmin module that ships with Enterprise 1.8. Based on the block name, that means there’s probably some block XML somewhere that looks something like

    <block type="navadmin/navadmin"
    

    My best guess if someone, at some point, installed this extension on your site. It’s supposed to install files to (among other places)

    app/code/community/Mage/Navadmin
    

    Templates or XML layout files that reference the block are likely left on your system, but the actual class file that defines the block in

    app/code/community/Mage/Navadmin/Block/Navadmin.php
    

    is missing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I took over an implementation of Magento Enterprise. There is a URL that looks
I have this weird issue in Magento when someone places an order using PayPal
In Magento 1.4, I am successfully using this code to mark an order as
I have a Magento Enterprise Edition install in a repository, client's site is running,
So I've installed an extension in my Magento Enterprise. I've been able to configure
In Magento Enterprise, the remove gift card link in the cart sits in the
I'm working on an extension that will receive CatalogEvent information from Magento (Enterprise) when
I'm using magento enterprise 1.9.1.1 In magento connect manager, the black console screen did
I am trying to link to a specific tab in Magento Enterprise. It seems
I am using Magento Enterprise, with a Datacash 3D Secure payment module. In the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.