Navin Parmar
Navin Parmar

Reputation: 167

How to uninstall Magic Toolbox in magento

After the installation of the magic toolbox extension it's not remove so how it is remove from the admin panel of the magento

Upvotes: 0

Views: 245

Answers (1)

stalinrajindian
stalinrajindian

Reputation: 1431

To fully disable module, you need to go to module config file, like app/etc/modules/MagicToolbox_Magic360.xml, and set it’s active parameter to false, like:

  <?xml version="1.0"?>
    <config>
     <modules>
        <MagicToolbox_Magic360>
            <active>false</active>
            <codePool>local</codePool>
        </MagicToolbox_Magic360>
      </modules>
     </config>

Remember to flush the Magento cache afterwards.

Upvotes: 2

Related Questions