Search code examples
magento

How to manualy uninstall Magento plugin?


help me with magento , I am new in , I instaled plugin http://www.magentocommerce.com/magento-connect/social-login-and-social-share-by-janrain.html

and now site is down

how to manualy uninstall it ?


Solution

  • If you want to remove magento extension manually, then follow the steps below:

    1. Disable the module from this file /app/etc/modules/<your_module>.xml
      set <active>true</active> to <active>false</active>
    2. If their is any dependent my sql table, Remove tables.
    3. Remove resource config record for the respective module from core_recource table in database.
    4. Remove the <project_root>/var/cache folder
    5. Refresh you home page or any other page.

    It should be removed now, I hope this can be helpful to one.