dbModel read resource does not implement Zend_Db_Adapter_Abstract

梦想的初衷 提交于 2019-12-06 10:44:50

If you are sure the extension created the problem. You need to disable the extension and try again.

For this you need to follow these steps

  1. Go to the root directory of Magento
  2. Open the directory app/etc/modules/.
  3. You can find a file with a name Ksv_Attributemanager.xml there. Open that file.
  4. There you can see a code like this <active>true</active>. Put false there.
  5. Clear the cache and load the page again.

Let me know whether it makes any difference.

EDIT

If you didn't find such file, then any one in those file is contributed by that extension. What you need to do is, open all files which does not start with Mage, and check for this code.

<config>
    <modules>
        <Ksv_Attributemanager>
            <active>true</active>
            <codePool>community</codePool>
        </Ksv_Attributemanager>
    </modules>
</config>

There may be a depend node present along with this one. If you find such code in any one of the file, put false instead true and try again. (If this code present, that means that file is a part of that custom extension)

If you want to disabled the new extension. You can disable global configuration for that module so the module doesn't load by Magento.

Open global configuration file of the new extension:

Example:

Go to path app\etc\modules\New_Extension.xml

Set tag active to false.

<config>
    <modules>
        <New_Extension>
           <active>false</active>
            <codePool>community</codePool>
        </New_Extension>
    </modules>
</config>

If you get error while install new extension. The new extension have to get data from database and You have not installed it so the error occur. You can check Magento Setup Resources for that extension.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!