Where can I check all the installed magento extensions in the admin panel?
|
migrated from stackoverflow.com Mar 5 '11 at 23:41
|
There's a lot of confusion around terminology here. Magento, the programming system, has code Modules. These modules are often (incorrectly, although I've done it myself) called extensions. Modules allow you to add code to Magento's configuration based MVC system. Magento also has a system called Magento Connect. Magento Connect allows you to install extensions. Magento Connect extensions are special pear packages. These packages can install a file anywhere in the Magento system. An extension may contain many Modules. It may also contain arbitrary files that are not part of a module. There's no formal place to check which modules are installed in Magento. Informally, people use the Disable Module Output configuration section at
This section will create a list of each programatic module installed in the system For Connect extensions, go to
This is where you're supposed to install/remove/manage your connect extensions. There's still the problem of manually installed extensions. Magento doesn't offer a formal marketplace. Many third party extension developers have created their own installer systems, or else have you install their files manually. There's no way to track these extensions other than diffing your code-base. |
|||
|
|
|
You can check your module settings using online tools. Especially it goes for shipping and payment modules (if you have any installed). Here's some more information on checking your estore configuration. In case it is incorrect, your customers may have trouble at the checkout. |
|||
|
|
