How to check installed third party plugin in magento

7.3k Views Asked by At

I have a website built in magento,and i want to update the version of magento before that i want to check all the installed third party plugins like ebay.

1

There are 1 best solutions below

0
baoutch On

You can find versions of your magento installed extensions in several places:

First method :

You could browse through app/code/local and app/code/community. For each module go to etc/ and open config.xml.

On top of the file there is a module definition tag containing the version of the module such as :

<modules>
    <Company_Module>
        <version>1.0.0</version>
    </Company_Module>
</modules>

Second method

If you can access your magento database, look for core_resourcetable. There you will have listed all magento module and their version number in column named version. Looks like this :

code                        version    data_version
adminnotification_setup     1.6.0.0     1.6.0.0
admin_setup                 1.6.1.1     1.6.1.1
all_setup                   0.1.3       0.1.3
api2_setup                  1.0.0.0     1.0.0.0
api_setup                   1.6.0.1     1.6.0.1