karto
karto

Reputation: 3668

Magento: which folder can I see my installed extensions?

I have installed an extension in magento 1.5. Just wondering where it is on my server because i want to write an include file to it. Thanks

Upvotes: 11

Views: 30827

Answers (4)

Mohammed Muzammil
Mohammed Muzammil

Reputation: 704

You can find your installed extensions in : your mail folder -> app/code/community

or

your mail folder -> app/code/local

Some of the extensions will be installed in local folder as well

enter image description here

You can find all in code folder

Upvotes: 0

Mukesh Chapagain
Mukesh Chapagain

Reputation: 25966

The extension can either be in one of the following directory:

[YourMagentoFolder]/app/code/local/

OR,

[YourMagentoFolder]/app/code/community/

Here is the list of folder structure for all the files that can be in a Magento extension:- Magento Folder Structure

Upvotes: 7

Shashank Saxena
Shashank Saxena

Reputation: 2028

[magento folder]/app/code/community

Upvotes: 0

Tao
Tao

Reputation: 14006

typically in [MagentoFolder]/app/code/community/[SomeCompanyName]/[SomePackageName]

(otherwise, instead of "community" it could be "local").

For the location of Magento itself on your server, that depends on where you installed it! :)

Upvotes: 25

Related Questions