Is there a way to disable a magento extension from the database? We can’t access our admin area due to a corrupt extension so we can’t disable the extension from the admin section..
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
If it is a properly created Magento extension, it will have a control file in app/etc/modules. You want to use this file to disable the extension as it prevents the module from loading. Disabling in the database allows the code to load but disables its output, an important distinction for something that is causing Magento to fail in its operation.
In this file will be a line, true. Change true to false and the module will be prevented from loading and executing.
Sample code for module Desitex_Checkoutnewsletter